]>
wirehaze git hosting - ppos.git/blob - ppos/kernel/memory.c
1 // PingPongOS - PingPong Operating System
3 // implementação trivial, a ser substituída no projeto de alocação de heap.
11 void *mem_alloc(int size
)
13 return (malloc(size
));
16 int mem_free(void *ptr
)