Enable buflib and core_alloc for warble.

Most of the work comes from http://gerrit.rockbox.org/r/#/c/1088/
by Thomas Jarosch.

Change-Id: Iaa673dad2388d1e44fc95ffaa14bafadc6158101
This commit is contained in:
Frank Gevaerts 2015-01-19 21:20:34 +01:00
parent 3ae0f32ac3
commit 163ca14e58
4 changed files with 25 additions and 0 deletions

View file

@ -64,6 +64,12 @@ off_t filesize(int fd);
putc('\n', stderr); \
} while (0)
#endif
#ifndef panicf
#define panicf(...) do { fprintf(stderr, __VA_ARGS__); \
putc('\n', stderr); \
exit(-1); \
} while (0)
#endif
#endif
*/