Files
gnuk/src/stdlib.h
2010-11-30 08:40:01 +09:00

11 lines
217 B
C

/*
* stdlib.h replacement, so that we can replace malloc functions
*/
typedef unsigned int size_t;
#include "ch.h"
#include "chheap.h"
#define malloc(size) chHeapAlloc (NULL, size)
#define free(p) chHeapFree (p)