summaryrefslogtreecommitdiffhomepage
path: root/src/tinyproxy.h
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2001-09-08 18:58:37 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2001-09-08 18:58:37 +0000
commit0668e42e8f5ce3d900218233e35de64905026cac (patch)
tree0a8f5ce953763cf81d78d51d31263712b9d8da1b /src/tinyproxy.h
parentd5253ec5f435b26c50ca4cb649d3f47b800cbbd8 (diff)
Changed all the mallocs and callocs to use the new safemalloc and
safecalloc.
Diffstat (limited to 'src/tinyproxy.h')
-rw-r--r--src/tinyproxy.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h
index 348e3a9..ebae8cc 100644
--- a/src/tinyproxy.h
+++ b/src/tinyproxy.h
@@ -1,4 +1,4 @@
-/* $Id: tinyproxy.h,v 1.13 2001-08-29 04:04:01 rjkaes Exp $
+/* $Id: tinyproxy.h,v 1.14 2001-09-08 18:58:37 rjkaes Exp $
*
* See 'tinyproxy.c' for a detailed description.
*
@@ -78,8 +78,6 @@
#define min(a,b) ((a) < (b) ? (a) : (b))
#define max(a,b) ((a) > (b) ? (a) : (b))
-#define safefree(x) do { free(x); x = NULL; } while (0)
-
/* Make a new type: bool_t */
typedef enum {
FALSE = 0,