Mercurial > emacs
changeset 2872:0ab5a9f88ff3
* lisp.h (malloc, realloc): Declare these to return void *, to
avoid conflicts with ANSI header files.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 18 May 1993 22:44:27 +0000 |
parents | 6b9c0ce0bcb8 |
children | f1cd54cf1b67 |
files | src/lisp.h |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 ();