]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Portability: squid provides strtoll()
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 11 Aug 2012 07:01:15 +0000 (01:01 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 11 Aug 2012 07:01:15 +0000 (01:01 -0600)
compat/compat_shared.h

index b92d3ace301141107f9735840c740c864f58a0ae..f7db82b93249dc896be9fa420228d65bb7e71322 100644 (file)
@@ -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))