18 lines
181 B
C
18 lines
181 B
C
|
|
// vmm.h
|
|
// Author: Josh Holtrop
|
|
// Date: 09/30/03
|
|
// Rewritten from scratch: 12/23/03
|
|
|
|
|
|
|
|
void vmm_init();
|
|
void *malloc(dword bytes);
|
|
int free(void *ptr);
|
|
|
|
|
|
|
|
|
|
|
|
|