Added stubs for the kernel memory manager

This commit is contained in:
2022-12-28 23:04:09 +00:00
parent fac31086f5
commit e922a776c3
6 changed files with 58 additions and 1 deletions

7
vm/vm_map.c Normal file
View File

@@ -0,0 +1,7 @@
#include <socks/vm.h>
#include <stddef.h>
vm_map_t *vm_map_create(void)
{
return NULL;
}