]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
add xxfree()
authorwessels <>
Sun, 14 Apr 1996 09:34:28 +0000 (09:34 +0000)
committerwessels <>
Sun, 14 Apr 1996 09:34:28 +0000 (09:34 +0000)
include/util.h

index 040531189870e6f36d3f087b8903350a0380636a..fe339ef84d8584dff2f3a91727782d28e84bbc7b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: util.h,v 1.5 1996/04/10 04:21:48 wessels Exp $
+ * $Id: util.h,v 1.6 1996/04/14 03:34:28 wessels Exp $
  */
 
 #ifndef _UTIL_H_
@@ -37,6 +37,7 @@ void *xmalloc _PARAMS((size_t));              /* Wrapper for malloc(3) */
 void *xrealloc _PARAMS((void *, size_t));      /* Wrapper for realloc(3) */
 void *xcalloc _PARAMS((int, size_t));          /* Wrapper for calloc(3) */
 void xfree _PARAMS((void *));                  /* Wrapper for free(3) */
+void xxfree _PARAMS((void *));                 /* Wrapper for free(3) */
 char *xstrdup _PARAMS ((char *));
 char *xstrerror _PARAMS(());