1 /* malloc.h -- header file for memory routines. */
3 #ifndef _INCLUDE_MALLOC_H_
4 #define _INCLUDE_MALLOC_H_
17 extern _PTR malloc
_PARAMS ((size_t));
18 extern _VOID free
_PARAMS ((_PTR
));
19 extern _PTR realloc
_PARAMS ((_PTR
, size_t));
20 extern _PTR calloc
_PARAMS ((size_t, size_t));
26 #endif /* _INCLUDE_MALLOC_H_ */