From: wessels <> Date: Fri, 6 Feb 1998 03:53:38 +0000 (+0000) Subject: Define some macros for function names we should not call directly X-Git-Tag: SQUID_3_0_PRE1~4162 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2086b06c03de8eca04066e5a586db72784e610ba;p=thirdparty%2Fsquid.git Define some macros for function names we should not call directly --- diff --git a/src/squid.h b/src/squid.h index 179bee5663..8e8c83f64a 100644 --- a/src/squid.h +++ b/src/squid.h @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.155 1998/02/04 23:36:06 wessels Exp $ + * $Id: squid.h,v 1.156 1998/02/05 20:53:38 wessels Exp $ * * AUTHOR: Duane Wessels * @@ -345,4 +345,12 @@ struct rusage { #define XMIN(x,y) ((x)<(y)? (x) : (y)) #define XMAX(a,b) ((a)>(b)? (a) : (b)) +/* + * Squid source files should not call these functions directly + */ +#define malloc + +#define free + +#define calloc + +#define sprintf + + #endif /* SQUID_H */