From: Amos Jeffries Date: Sat, 6 Oct 2012 02:12:35 +0000 (-0600) Subject: Portability: squid provides strtoll() X-Git-Tag: SQUID_3_2_2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1c75d1397f4ad932a21facbb1dc533e60fc2a79;p=thirdparty%2Fsquid.git Portability: squid provides strtoll() --- diff --git a/compat/compat_shared.h b/compat/compat_shared.h index b92d3ace30..f7db82b932 100644 --- a/compat/compat_shared.h +++ b/compat/compat_shared.h @@ -218,6 +218,11 @@ extern "C" { #include "compat/xstrto.h" #include "compat/xis.h" +/* + * strtoll() is needed. Squid provides a portable definition. + */ +#include "compat/strtoll.h" + #if !HAVE_MEMCPY #if HAVE_BCOPY #define memcpy(d,s,n) bcopy((s),(d),(n))