summaryrefslogtreecommitdiff
path: root/api/kc/core/memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'api/kc/core/memory.h')
-rw-r--r--api/kc/core/memory.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/api/kc/core/memory.h b/api/kc/core/memory.h
deleted file mode 100644
index d6f1cd6..0000000
--- a/api/kc/core/memory.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- * kernel component core - memory management interface
- */
-#pragma once
-
-#include <kc/kc.h>
-
-#include <stdint.h>
-
-typedef uint64_t kc_phys_addr;
-typedef void * kc_virt_addr;
-
-kc_phys_addr kcc_page_alloc(void);
-void kcc_page_free(kc_phys_addr page);
-