summaryrefslogtreecommitdiff
path: root/src/tinyproxy.h
diff options
context:
space:
mode:
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,