]> Git Repo - uclibc-ng.git/blob - include/malloc.h
We already have tar.h, so might as well include cpio.h as well...
[uclibc-ng.git] / include / malloc.h
1
2 #ifndef __MALLOC_H
3 #define __MALLOC_H
4 #include <features.h>
5 #include <sys/types.h>
6
7 __BEGIN_DECLS
8
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
16 __END_DECLS
17
18 #endif
This page took 0.025144 seconds and 4 git commands to generate.