malloc.h revision 4499
195144Sgshapiro/* This file is SYSV-ism (for compatibility only) */
295144Sgshapiro/* this declarations must match stdlib.h ones */
395144Sgshapiro
495144Sgshapiro#if !defined(_MALLOC_H_) && !defined(_STDLIB_H_)
595144Sgshapiro#define _MALLOC_H_
695144Sgshapiro
7123051Sru#include <sys/cdefs.h>
8123051Sru
9123051Sru__BEGIN_DECLS
1095144Sgshapirovoid	*calloc __P((size_t, size_t));
1195144Sgshapirovoid	 free __P((void *));
1295144Sgshapirovoid	*malloc __P((size_t));
1395144Sgshapirovoid	*realloc __P((void *, size_t));
1495144Sgshapiro__END_DECLS
15
16#endif /* _MALLOC_H_ */
17