diff src/m/alpha.h @ 13534:25cd5b83d805

Declare calloc like malloc.
author Richard M. Stallman <rms@gnu.org>
date Mon, 13 Nov 1995 05:06:14 +0000
parents 1d69a0ea30ec
children 0e584934cd9e
line wrap: on
line diff
--- a/src/m/alpha.h	Mon Nov 13 03:20:37 1995 +0000
+++ b/src/m/alpha.h	Mon Nov 13 05:06:14 1995 +0000
@@ -231,12 +231,12 @@
 #ifdef _MALLOC_INTERNAL
 /* These declarations are designed to match the ones in gmalloc.c.  */
 #if defined (__STDC__) && __STDC__
-extern void *malloc (), *realloc ();
+extern void *malloc (), *realloc (), *calloc ();
 #else
-extern char *malloc (), *realloc ();
+extern char *malloc (), *realloc (), *calloc ();
 #endif
 #else /* not _MALLOC_INTERNAL */
-extern void *malloc (), *realloc ();
+extern void *malloc (), *realloc (), *calloc ();
 #endif /* not _MALLOC_INTERNAL */