From 6441db6b0bb66fcd588c1a0ec0b17f2fbefb5640 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 13 Nov 1995 05:06:14 +0000 Subject: [PATCH] Declare calloc like malloc. --- src/m/alpha.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 */ -- 2.39.2