aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-02-04 18:41:12 -0700
committerChristian Cunningham <cc@localhost>2022-02-04 18:41:12 -0700
commita16e8875d13d884ca203bfd83dffe8fae17405c4 (patch)
treee39feded4bd5e980e86f6d521a8c9612b8c7ef85 /include
parentab59732b5384d34edc06a9191b00bf32ad53865d (diff)
Remove realloc
Make threads be explicit in their intentions
Diffstat (limited to 'include')
-rw-r--r--include/lib/kmem.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/lib/kmem.h b/include/lib/kmem.h
index 4e79c96..eb3eb28 100644
--- a/include/lib/kmem.h
+++ b/include/lib/kmem.h
@@ -3,7 +3,6 @@
void* kmalloc(unsigned int size);
void* kcalloc(unsigned int size);
-void* krealloc(void* old, unsigned int size);
void kfree(void* ptr);
#endif