summaryrefslogtreecommitdiff
path: root/src/m
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-11-13 05:06:14 +0000
committerRichard M. Stallman <rms@gnu.org>1995-11-13 05:06:14 +0000
commit6441db6b0bb66fcd588c1a0ec0b17f2fbefb5640 (patch)
tree5c5a7f4b3e723d5a2e162ebfb046a98b34052d69 /src/m
parent10fe2d3844a4a787ad31df4c1f8cedf1a0d30218 (diff)
downloademacs-6441db6b0bb66fcd588c1a0ec0b17f2fbefb5640.tar.gz
Declare calloc like malloc.
Diffstat (limited to 'src/m')
-rw-r--r--src/m/alpha.h6
1 files 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 */