From 74240e13b998c990e440e39d042f8ca2e2579787 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Tue, 8 Aug 2000 05:01:18 +0000 Subject: [PATCH] DW: - Note malloc, free, etc alternatives. --- src/squid.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 + -- 2.47.3