summaryrefslogtreecommitdiff
path: root/src/user/lib/include/tce/mem.h
blob: ab17bde9335bcc50f55ce932a2fd9f10ce922e4c (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef DEF_HEAP_H
#define DEF_HEAP_H

#include <tce/syscall.h>

void* malloc(size_t size);
void free(void* p);

#endif