summaryrefslogtreecommitdiff
path: root/src/libc/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libc/stdlib.h')
-rw-r--r--src/libc/stdlib.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libc/stdlib.h b/src/libc/stdlib.h
index 331012e..ff6b67f 100644
--- a/src/libc/stdlib.h
+++ b/src/libc/stdlib.h
@@ -1,6 +1,15 @@
#ifndef STDLIB_H
#define STDLIB_H
+#include "stddef.h"
+
+#include "memorymanagement.h"
+
char *itoa( int v, char *s, int base );
+void *malloc( size_t size );
+void free( void *p );
+
+void __stdlib_set_memory_manager( memory_manager_t *memory_manager );
+
#endif // STDLIB_H