]> code.delx.au - gnu-emacs/commitdiff
Declare calloc like malloc.
authorRichard M. Stallman <rms@gnu.org>
Mon, 13 Nov 1995 05:06:14 +0000 (05:06 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 13 Nov 1995 05:06:14 +0000 (05:06 +0000)
src/m/alpha.h

index 50a6a68b885beb5ee1b7261965df68f85148e73e..f4579dfe663a11fd08c66e3d3f8890313c39dd77 100644 (file)
@@ -231,12 +231,12 @@ NOTE-END
 #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 */