From fd2c9e0c4d4159ede67cfd749a5e8df9e1de3832 Mon Sep 17 00:00:00 2001 From: Noah Friedman Date: Fri, 23 Apr 1993 16:29:13 +0000 Subject: [PATCH] entered into RCS --- src/alloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alloc.h b/src/alloc.h index b944628e..ab045b36 100644 --- a/src/alloc.h +++ b/src/alloc.h @@ -24,7 +24,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef __STDC__ #define FREE(x) (x ? (void) free((char *) (x)) : (void)0) #else -#define FREE(x) (x && free((char *) (x))) +#define FREE(x) ((x) != 0 && (free ((char *) (x)), 0)) #endif extern char *xmalloc(); -- 2.47.2