aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/libc/stdlib.h')
-rw-r--r--src/userspace/libc/stdlib.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/userspace/libc/stdlib.h b/src/userspace/libc/stdlib.h
deleted file mode 100644
index 4670b8c..0000000
--- a/src/userspace/libc/stdlib.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef MELVIX_STDLIB_H
-#define MELVIX_STDLIB_H
-
-#include <stdint.h>
-
-// String conversion
-char *itoa(int n);
-int atoi(char *str);
-char *htoa(u32 n);
-int htoi(char *str);
-
-// Exit functions
-void exit(u32 code);
-#define EXIT_SUCCESS 0
-#define EXIT_FAILURE 1
-
-// Memory management
-void *malloc(u32 size);
-void free(void *addr);
-
-#endif \ No newline at end of file