Fix include problem
[kugel-rb.git] / firmware / include / malloc.h
blob639675787a418a694563a3a2491e19e87b8f8e34
1 /* malloc.h -- header file for memory routines. */
3 #ifndef _INCLUDE_MALLOC_H_
4 #define _INCLUDE_MALLOC_H_
6 #include <_ansi.h>
8 #define __need_size_t
9 #include <stddef.h>
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
15 /* The routines. */
17 extern _PTR malloc _PARAMS ((size_t));
18 extern _VOID free _PARAMS ((_PTR));
19 extern _PTR realloc _PARAMS ((_PTR, size_t));
20 extern _PTR calloc _PARAMS ((size_t, size_t));
22 #ifdef __cplusplus
24 #endif
26 #endif /* _INCLUDE_MALLOC_H_ */