diff options
| author | Jim Blandy | 1993-05-18 22:44:27 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-18 22:44:27 +0000 |
| commit | 339747e43865f9e5b610cc1e667d3c44fbd24b1a (patch) | |
| tree | 99af869d1035261c9b5bdec025e77ef33b0809f1 /src | |
| parent | d685741312ab5d86fd2264f95debece045114ff7 (diff) | |
| download | emacs-339747e43865f9e5b610cc1e667d3c44fbd24b1a.tar.gz emacs-339747e43865f9e5b610cc1e667d3c44fbd24b1a.zip | |
* lisp.h (malloc, realloc): Declare these to return void *, to
avoid conflicts with ANSI header files.
Diffstat (limited to 'src')
| -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 */ | |||
| 1292 | 1292 | ||
| 1293 | extern void debugger (); | 1293 | extern void debugger (); |
| 1294 | 1294 | ||
| 1295 | extern char *malloc (), *realloc (), *getenv (), *ctime (), *getwd (); | 1295 | extern void *malloc (), *realloc (); |
| 1296 | extern char *getenv (), *ctime (), *getwd (); | ||
| 1296 | extern long *xmalloc (), *xrealloc (); | 1297 | extern long *xmalloc (), *xrealloc (); |
| 1297 | extern void xfree (); | 1298 | extern void xfree (); |
| 1298 | 1299 | ||