X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/08089d5d35ece0c7d41659cc1bc09638e2abb151..965f6134bdf94f18e321bbf32fc625a70db5f2bc:/src/alloc.h 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();