Commit 728d69a4 authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

#include "compat.h" for asprintf().

git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@738 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 49694f48
...@@ -4,20 +4,22 @@ ...@@ -4,20 +4,22 @@
* Storage method based on mmap'ed file * Storage method based on mmap'ed file
*/ */
#include <stdio.h> #include <sys/param.h>
#include <unistd.h> #include <sys/mman.h>
#include <fcntl.h> #include <sys/mount.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <errno.h> #include <errno.h>
#include <stdint.h> #include <fcntl.h>
#include <limits.h> #include <limits.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <sys/stat.h> #include <unistd.h>
#include <sys/param.h>
#include <sys/mount.h>
#include <sys/mman.h>
#include <sys/socket.h>
#include "compat.h"
#include "libvarnish.h" #include "libvarnish.h"
#include "shmlog.h" #include "shmlog.h"
#include "cache.h" #include "cache.h"
......
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
#include <queue.h> #include <queue.h>
#include <unistd.h> #include <unistd.h>
#include "compat.h"
#include "vsb.h" #include "vsb.h"
#include "vcc_priv.h" #include "vcc_priv.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment