]> Git Repo - uclibc-ng.git/blame - include/malloc.h
We already have tar.h, so might as well include cpio.h as well...
[uclibc-ng.git] / include / malloc.h
CommitLineData
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
9extern void free __P((void *));
10extern void *malloc __P((size_t));
11extern void *realloc __P((void *, size_t));
12extern void *alloca __P((size_t));
13
14extern void *(*__alloca_alloc) __P((size_t));
15
ce8ee8d9
DM
16__END_DECLS
17
64bc6412 18#endif
This page took 0.040016 seconds and 4 git commands to generate.