]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
need special handing for strict ANSI
authorwessels <>
Tue, 19 Mar 1996 08:28:48 +0000 (08:28 +0000)
committerwessels <>
Tue, 19 Mar 1996 08:28:48 +0000 (08:28 +0000)
include/util.h

index 9277e821edc503704a0457c8ef3efe612d639614..c8d0802dce3342ff2bdb6572aac385aa625644e4 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *  Darren Hardy, hardy@cs.colorado.edu, April 1994
  *
- *  $Id: util.h,v 1.2 1996/02/29 07:59:28 wessels Exp $
+ *  $Id: util.h,v 1.3 1996/03/19 01:28:48 wessels Exp $
  *
  *  ----------------------------------------------------------------------
  *  Copyright (c) 1994, 1995.  All rights reserved.
@@ -183,7 +183,14 @@ extern char *mkrfc850 _PARAMS((time_t *));
 extern void init_log3 _PARAMS((char *pn, FILE *a, FILE *b));
 extern void debug_init();
 extern void log_errno2 _PARAMS((char *, int, char *));
+
+#if defined(__STRICT_ANSI__)
+extern void Log _PARAMS((char *, ...));
+extern void errorlog  _PARAMS((char *, ...));
+#else
 extern void Log ();
 extern void errorlog ();
+#endif /* __STRICT_ANSI__ */
+
 
 #endif /* ndef _UTIL_H_ */