From: wessels <> Date: Tue, 8 Aug 2000 05:01:18 +0000 (+0000) Subject: DW: X-Git-Tag: SQUID_3_0_PRE1~1877 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74240e13b998c990e440e39d042f8ca2e2579787;p=thirdparty%2Fsquid.git DW: - Note malloc, free, etc alternatives. --- diff --git a/src/squid.h b/src/squid.h index d237dcc890..46b75dabb9 100644 --- a/src/squid.h +++ b/src/squid.h @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.202 2000/06/08 18:05:35 hno Exp $ + * $Id: squid.h,v 1.203 2000/08/07 23:01:18 wessels Exp $ * * AUTHOR: Duane Wessels * @@ -389,7 +389,9 @@ struct rusage { #define XMAX(a,b) ((a)>(b)? (a) : (b)) /* - * Squid source files should not call these functions directly + * Squid source files should not call these functions directly. + * Use xmalloc, xfree, xcalloc, snprintf, and xstrdup instead. + * Also use xmemcpy, xisspace, ... */ #ifndef malloc #define malloc +