]> git.eshelyaron.com Git - emacs.git/commitdiff
(xmalloc, xrealloc): Use return-type long *.
authorRichard M. Stallman <rms@gnu.org>
Fri, 11 Aug 1995 01:44:00 +0000 (01:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 11 Aug 1995 01:44:00 +0000 (01:44 +0000)
lib-src/fakemail.c

index da3911b4b4952ba153a78c8242c9ff4518d9dda5..4a2618ad5ce51996f984cedf91a52e5a3d796fcd 100644 (file)
@@ -166,22 +166,22 @@ fatal (s1, s2)
 
 /* Like malloc but get fatal error if memory is exhausted.  */
 
-static char *
+static long *
 xmalloc (size)
      int size;
 {
-  char *result = (char *) malloc (((unsigned) size));
-  if (result == ((char *) NULL))
+  long *result = (long *) malloc (((unsigned) size));
+  if (result == ((long *) NULL))
     fatal ("virtual memory exhausted", 0);
   return result;
 }
 
-static char *
+static long *
 xrealloc (ptr, size)
-     char *ptr;
+     long *ptr;
      int size;
 {
-  char *result = (char *) realloc (ptr, ((unsigned) size));
+  long *result = (long *) realloc (ptr, ((unsigned) size));
   if (result == ((char *) NULL))
     fatal ("virtual memory exhausted");
   return result;