]> git.saurik.com Git - bison.git/commitdiff
entered into RCS
authorNoah Friedman <friedman@splode.com>
Fri, 23 Apr 1993 16:29:13 +0000 (16:29 +0000)
committerNoah Friedman <friedman@splode.com>
Fri, 23 Apr 1993 16:29:13 +0000 (16:29 +0000)
src/alloc.h

index b944628eea1a48ec7bf612bc0857fa66376d241b..ab045b360b023d52e65f3e24386b4368849a7529 100644 (file)
@@ -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();