# HG changeset patch # User Richard M. Stallman # Date 816239174 0 # Node ID 25cd5b83d805cb69cd2c1725d9606fb25efb6ec2 # Parent d081e1969406284be215162e8549cdfeba2cda07 Declare calloc like malloc. diff -r d081e1969406 -r 25cd5b83d805 src/m/alpha.h --- 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 */