mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-12-14 16:55:26 -08:00
7 lines
98 B
C
7 lines
98 B
C
#include "heap.h"
|
|
|
|
void *heap_alloc(size_t size) {
|
|
// Heap allocation code
|
|
return NULL;
|
|
}
|