summaryrefslogtreecommitdiff
path: root/os/src/malloc.c
blob: 0906cc0fcef649f8b65b487a436d2c7bceaad6c4 (plain)
1
2
3
4
5
6
7
8
#include <reent.h>
#include <malloc.h>
#include <osdebug.h>

void * malloc(size_t size) {
    DBGOUT("malloc(%u)\r\n", size);
    return _malloc_r(_impure_ptr, size);
}