From: des Date: Mon, 7 Aug 2006 16:26:54 +0000 (+0000) Subject: #include "compat.h" for asprintf(). X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=971596c735e386c94d560f981a32e76ba3429038;p=varnish #include "compat.h" for asprintf(). git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@738 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/storage_file.c b/varnish-cache/bin/varnishd/storage_file.c index 922b96bb..ef0e97f7 100644 --- a/varnish-cache/bin/varnishd/storage_file.c +++ b/varnish-cache/bin/varnishd/storage_file.c @@ -4,20 +4,22 @@ * Storage method based on mmap'ed file */ -#include -#include -#include +#include +#include +#include +#include +#include + #include -#include +#include #include +#include +#include #include #include -#include -#include -#include -#include -#include +#include +#include "compat.h" #include "libvarnish.h" #include "shmlog.h" #include "cache.h" diff --git a/varnish-cache/lib/libvcl/vcc_compile.c b/varnish-cache/lib/libvcl/vcc_compile.c index 8454a5f2..d1b2432f 100644 --- a/varnish-cache/lib/libvcl/vcc_compile.c +++ b/varnish-cache/lib/libvcl/vcc_compile.c @@ -50,6 +50,7 @@ #include #include +#include "compat.h" #include "vsb.h" #include "vcc_priv.h"