1 /* This file is SYSV-ism (for compatibility only) */ 2 /* this declarations must match stdlib.h ones */ 3 4 #if !defined(_MALLOC_H_) && !defined(_STDLIB_H_) 5 #define _MALLOC_H_ 6 7 #include <sys/cdefs.h> 8 9 __BEGIN_DECLS 10 void *calloc __P((size_t, size_t)); 11 void free __P((void *)); 12 void *malloc __P((size_t)); 13 void *realloc __P((void *, size_t)); 14 __END_DECLS 15 16 #endif /* _MALLOC_H_ */ 17