From: wessels <> Date: Fri, 27 Jun 1997 04:43:51 +0000 (+0000) Subject: HAVE_SNPRINTF check X-Git-Tag: SQUID_3_0_PRE1~4910 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b1bb521fc1238b0b45c8cff92a8f460d5521885;p=thirdparty%2Fsquid.git HAVE_SNPRINTF check --- diff --git a/src/squid.h b/src/squid.h index 7f4d28cae1..b9fd3ca1f1 100644 --- a/src/squid.h +++ b/src/squid.h @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.125 1997/06/26 22:41:46 wessels Exp $ + * $Id: squid.h,v 1.126 1997/06/26 22:43:51 wessels Exp $ * * AUTHOR: Duane Wessels * @@ -321,6 +321,10 @@ typedef void STCB _PARAMS((void *, char *, ssize_t)); /* store callback */ #include "tempnam.h" #endif +#if !HAVE_SNPRINTF +#include "snprintf.h" +#endif + extern void serverConnectionsClose _PARAMS((void)); extern void shut_down _PARAMS((int));