From 4546c75d685475d8b9f215b588364e1d1bbd0b79 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 29 Apr 2020 19:21:29 +0200 Subject: MUCH work in libc Also cleaned up some syscalls etc --- src/userspace/libc/stdlib.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/userspace/libc/stdlib.h') diff --git a/src/userspace/libc/stdlib.h b/src/userspace/libc/stdlib.h index dfc97e8..4140c4c 100644 --- a/src/userspace/libc/stdlib.h +++ b/src/userspace/libc/stdlib.h @@ -1,10 +1,18 @@ #ifndef MELVIX_STDLIB_H #define MELVIX_STDLIB_H +#include + // String conversion +char *itoa(int n); +int atoi(char *str); +char *htoa(u32 n); +int htoi(char *str); // Exit functions // Memory management +void *malloc(u8 size); +void free(void *addr); #endif \ No newline at end of file -- cgit v1.2.3