diff options
author | Jim Blandy <jimb@redhat.com> | 1993-05-18 22:44:27 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-05-18 22:44:27 +0000 |
commit | 339747e43865f9e5b610cc1e667d3c44fbd24b1a (patch) | |
tree | 99af869d1035261c9b5bdec025e77ef33b0809f1 /src/lisp.h | |
parent | d685741312ab5d86fd2264f95debece045114ff7 (diff) | |
download | emacs-339747e43865f9e5b610cc1e667d3c44fbd24b1a.tar.gz |
* lisp.h (malloc, realloc): Declare these to return void *, to
avoid conflicts with ANSI header files.
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index a13db81a776..1fdcae2e628 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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 (); |