diff options
author | Richard M. Stallman <rms@gnu.org> | 1999-01-25 01:34:34 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1999-01-25 01:34:34 +0000 |
commit | 3f87383f14194036c62781e654f964ce49826274 (patch) | |
tree | 5216fa218a40e45e04ce0e30e8bca3b6a008b75b /lib-src | |
parent | 596f9d2e0e13208fef277303e1833fe62a8be3a9 (diff) | |
download | emacs-3f87383f14194036c62781e654f964ce49826274.tar.gz |
(xmalloc): Declare to return long.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/emacsclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 412256b916e..c6181bd2710 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -148,7 +148,7 @@ quote_file_name (name) /* Like malloc but get fatal error if memory is exhausted. */ -char * +long * xmalloc (size) unsigned int size; { |