1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-12 16:23:57 +00:00

* lisp.h (malloc, realloc): Declare these to return void *, to

avoid conflicts with ANSI header files.
This commit is contained in:
Jim Blandy 1993-05-18 22:44:27 +00:00
parent d685741312
commit 339747e438

View File

@ -1292,7 +1292,8 @@ extern int immediate_quit; /* Nonzero means ^G can quit instantly */
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 ();