]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - compat/strtoll.c
SourceFormat Enforcement
[thirdparty/squid.git] / compat / strtoll.c
index da7fc5fb356471bfd01548fdf0b9914222f85d10..ab8ecf1d7496b868cd61a33624b318767fc74d35 100644 (file)
@@ -33,7 +33,7 @@
 
 /* modified for long long <mgd@swarm.org> 1999-08-12 */
 
-#include "config.h"
+#include "squid.h"
 #include "compat/strtoll.h"
 
 #if HAVE_CTYPE_H
@@ -43,7 +43,6 @@
 #include <errno.h>
 #endif
 
-
 #ifndef INT64_MIN
 /* Native 64 bit system without strtoll() */
 #if defined(LONG_MIN) && (SIZEOF_LONG == 8)
@@ -64,7 +63,6 @@
 #endif
 #endif
 
-
 /*
  * Convert a string to a int64 integer.
  *