From: robertc <> Date: Mon, 16 Sep 2002 03:12:11 +0000 (+0000) Subject: make snmplib_debug's prototype match that used in snmplib_debug.c X-Git-Tag: SQUID_3_0_PRE1~750 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2de96275b26acbb848f74eaf37612e5723271e85;p=thirdparty%2Fsquid.git make snmplib_debug's prototype match that used in snmplib_debug.c --- diff --git a/include/snmp_debug.h b/include/snmp_debug.h index 4e8d683dc4..e3f8cc1fd5 100644 --- a/include/snmp_debug.h +++ b/include/snmp_debug.h @@ -1,11 +1,16 @@ /* - * $Id: snmp_debug.h,v 1.10 2001/11/13 21:27:47 hno Exp $ + * $Id: snmp_debug.h,v 1.11 2002/09/15 21:12:11 robertc Exp $ */ #ifndef SQUID_SNMP_DEBUG_H #define SQUID_SNMP_DEBUG_H +#if STDC_HEADERS extern void snmplib_debug(int, const char *,...) PRINTF_FORMAT_ARG2; +#else +extern void snmplib_debug (va_alist); +#endif + #endif /* SQUID_SNMP_DEBUG_H */