From: Richard M. Stallman Date: Mon, 13 Nov 1995 05:06:14 +0000 (+0000) Subject: Declare calloc like malloc. X-Git-Tag: emacs-19.34~2326 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6441db6b0bb66fcd588c1a0ec0b17f2fbefb5640;p=emacs.git Declare calloc like malloc. --- diff --git a/src/m/alpha.h b/src/m/alpha.h index 50a6a68b885..f4579dfe663 100644 --- a/src/m/alpha.h +++ b/src/m/alpha.h @@ -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 */