# HG changeset patch # User Jim Blandy # Date 737765067 0 # Node ID 0ab5a9f88ff3ba7b7700797cc803af46ab1f28ec # Parent 6b9c0ce0bcb834f7462f490512fb5f98a3e76b7d * lisp.h (malloc, realloc): Declare these to return void *, to avoid conflicts with ANSI header files. diff -r 6b9c0ce0bcb8 -r 0ab5a9f88ff3 src/lisp.h --- a/src/lisp.h Tue May 18 22:44:08 1993 +0000 +++ b/src/lisp.h Tue May 18 22:44:27 1993 +0000 @@ -1292,7 +1292,8 @@ extern void debugger (); -extern char *malloc (), *realloc (), *getenv (), *ctime (), *getwd (); +extern void *malloc (), *realloc (); +extern char *getenv (), *ctime (), *getwd (); extern long *xmalloc (), *xrealloc (); extern void xfree ();