Commit | Line | Data |
---|---|---|
dd3b648e RP |
1 | /* Fake stdlib.h supplying the stuff needed by malloc. */ |
2 | ||
3 | #ifndef __ONEFILE | |
4 | #include <stddef.h> | |
5 | #endif | |
6 | ||
7 | extern void EXFUN(abort, (void)); | |
8 | extern void EXFUN(free, (PTR)); | |
9 | extern PTR EXFUN(malloc, (size_t)); | |
10 | extern PTR EXFUN(realloc, (PTR, size_t)); |