aboutsummaryrefslogtreecommitdiff
path: root/lib/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stdlib.h')
-rw-r--r--lib/stdlib.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/stdlib.h b/lib/stdlib.h
new file mode 100644
index 0000000..6b8e09d
--- /dev/null
+++ b/lib/stdlib.h
@@ -0,0 +1,6 @@
+#pragma once
+
+#include <stddef.h>
+
+void *malloc(size_t size);
+void free(void *ptr);