1 /* Begin include file memory.h 1.2 */ 2 3 extern char 4 *memccpy(), 5 *memchr(), 6 *memcpy(), 7 *memset(); 8 extern int memcmp(); 9 10 char *malloc(); 11 void free(); 12 char *realloc(); 13 char * calloc(); 14 15 /* End include file memory.h */