Usermode/libc #6 Fix string.h functions, add some more unit tests
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / heap_native.c
1 #include <stdlib.h>
2 #include <stdbool.h>
3
4 bool _libc_free(void *addr)
5 {
6         free(addr);
7         return true;
8 }

UCC git Repository :: git.ucc.asn.au