aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-05-18 22:44:27 +0000
committerJim Blandy1993-05-18 22:44:27 +0000
commit339747e43865f9e5b610cc1e667d3c44fbd24b1a (patch)
tree99af869d1035261c9b5bdec025e77ef33b0809f1 /src
parentd685741312ab5d86fd2264f95debece045114ff7 (diff)
downloademacs-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.h3
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
1293extern void debugger (); 1293extern void debugger ();
1294 1294
1295extern char *malloc (), *realloc (), *getenv (), *ctime (), *getwd (); 1295extern void *malloc (), *realloc ();
1296extern char *getenv (), *ctime (), *getwd ();
1296extern long *xmalloc (), *xrealloc (); 1297extern long *xmalloc (), *xrealloc ();
1297extern void xfree (); 1298extern void xfree ();
1298 1299