]> git.saurik.com Git - bison.git/blobdiff - src/alloc.h
Add non-RCS files from /gd/gnu/bison.
[bison.git] / 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();