]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
localize snmplib_debug_hook
authorwessels <>
Tue, 17 Mar 1998 03:32:15 +0000 (03:32 +0000)
committerwessels <>
Tue, 17 Mar 1998 03:32:15 +0000 (03:32 +0000)
snmplib/snmplib_debug.c

index dd70bbbcefe814fff4d66a5ba599454eebe8a35a..a300070022c9cff7e76a932a8b673a6e025aa876 100644 (file)
@@ -8,7 +8,11 @@
 #include <varargs.h>
 #endif
 
-#include "snmp_debug.h"
+#ifdef __STDC__
+void (*snmplib_debug_hook) (int,char *,...) = NULL;
+#else
+void (*snmplib_debug_hook) (va_alist) = NULL;
+#endif
 
 extern void
 #ifdef __STDC__