1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-12 16:23:57 +00:00

(xmalloc): Declare it to return long *.

This commit is contained in:
Richard M. Stallman 1995-05-04 06:46:51 +00:00
parent 0404b62c85
commit 2583d6d741

View File

@ -116,7 +116,7 @@ void error ();
void pfatal_with_name ();
void pfatal_and_delete ();
char *concat ();
char *xmalloc ();
long *xmalloc ();
int popmail ();
int pop_retr ();
int mbx_write ();
@ -430,11 +430,11 @@ concat (s1, s2, s3)
/* Like malloc but get fatal error if memory is exhausted. */
char *
long *
xmalloc (size)
unsigned size;
{
char *result = (char *) malloc (size);
long *result = (long *) malloc (size);
if (!result)
fatal ("virtual memory exhausted", 0);
return result;