]>
Commit | Line | Data |
---|---|---|
64bc6412 EA |
1 | |
2 | #ifndef __MALLOC_H | |
3 | #define __MALLOC_H | |
4 | #include <features.h> | |
5 | #include <sys/types.h> | |
6 | ||
ce8ee8d9 DM |
7 | __BEGIN_DECLS |
8 | ||
64bc6412 EA |
9 | extern void free __P((void *)); |
10 | extern void *malloc __P((size_t)); | |
11 | extern void *realloc __P((void *, size_t)); | |
12 | extern void *alloca __P((size_t)); | |
13 | ||
14 | extern void *(*__alloca_alloc) __P((size_t)); | |
15 | ||
ce8ee8d9 DM |
16 | __END_DECLS |
17 | ||
64bc6412 | 18 | #endif |