From: Amos Jeffries Date: Sat, 11 Aug 2012 07:01:15 +0000 (-0600) Subject: Portability: squid provides strtoll() X-Git-Tag: sourceformat-review-1~113 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=628fed9d538ac9f7c121043b81e9ceb40f46783d;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))