prototypes

SCCS-file: ialloc.c
SCCS-SID: 8.12
This commit is contained in:
Arthur David Olson
2012-07-18 03:01:47 -04:00
committed by Paul Eggert
parent 90d3fbbed5
commit b7ffc0f6de
+7
View File
@@ -23,6 +23,13 @@ static char elsieid[] = "%W%";
#define alloc_t size_t
char * icalloc(int nelem, int elsize);
char * icatalloc(char * old, char * new);
char * icpyalloc(char * string);
char * imalloc(int n);
char * irealloc(char * pointer, int size);
void ifree(char * pointer);
#else /* !defined HAVEHEADS */
extern char * calloc();