summaryrefslogtreecommitdiffstats
path: root/include/malloc.h
blob: d85c5d878ae1bf48308f4896ddb7b1e8e83ef6fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* This file is SYSV-ism (for compatibility only) */
/* this declarations must match stdlib.h ones */

#if !defined(_MALLOC_H_) && !defined(_STDLIB_H_)
#define _MALLOC_H_

#include <sys/cdefs.h>

__BEGIN_DECLS
void	*calloc __P((size_t, size_t));
void	 free __P((void *));
void	*malloc __P((size_t));
void	*realloc __P((void *, size_t));
__END_DECLS

#endif /* _MALLOC_H_ */
OpenPOWER on IntegriCloud