summaryrefslogtreecommitdiff
path: root/include/mem.h
diff options
context:
space:
mode:
authorNathan Lee <me@nwlee.tech>2026-07-12 12:42:31 -0500
committerNathan Lee <me@nwlee.tech>2026-07-12 12:45:05 -0500
commit24fdac29fb8a1c7766869b05e7a17b2c4cc98ce1 (patch)
tree6fddf53527e7ab52e089b620bcdbcba5fa67daa3 /include/mem.h
parent5d9942d70ca61af4d12cd2a531a190c98052c9c4 (diff)
create elf.h
The ELF parser needs more work, there are more structs to be added. memcpy was refactored from mem.h into common.h endianness conversions were standardized in types.h
Diffstat (limited to 'include/mem.h')
-rw-r--r--include/mem.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/mem.h b/include/mem.h
index edba547..bd6c911 100644
--- a/include/mem.h
+++ b/include/mem.h
@@ -20,7 +20,5 @@ void* kmalloc(size_t size);
void* kzalloc(size_t size);
void kfree(void* ptr);
-void* memcpy(void* to, const void* from, size_t size);
-
void km_init(struct mem_info *info);