gnuk/src/stdlib.h

14 lines
247 B
C
Raw Normal View History

2010-09-08 05:24:12 +00:00
/*
2013-06-20 07:19:49 +00:00
* stdlib.h replacement to replace malloc functions
2010-09-08 05:24:12 +00:00
*/
typedef unsigned int size_t;
2013-06-20 07:19:49 +00:00
#include <stddef.h> /* NULL */
#define malloc(size) gnuk_malloc (size)
#define free(p) gnuk_free (p)
void *gnuk_malloc (size_t);
void gnuk_free (void *);