Mercurial > emacs
changeset 13534:25cd5b83d805
Declare calloc like malloc.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 13 Nov 1995 05:06:14 +0000 |
parents | d081e1969406 |
children | b077415f487d |
files | src/m/alpha.h |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
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 */