From: wessels <> Date: Tue, 19 Mar 1996 08:28:48 +0000 (+0000) Subject: need special handing for strict ANSI X-Git-Tag: SQUID_3_0_PRE1~6413 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7014f02284b1f53af85619633b9006670eaf1caa;p=thirdparty%2Fsquid.git need special handing for strict ANSI --- diff --git a/include/util.h b/include/util.h index 9277e821ed..c8d0802dce 100644 --- a/include/util.h +++ b/include/util.h @@ -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_ */