From 34762f54f93dac3c12c8fb5be56ffb0e74e72299 Mon Sep 17 00:00:00 2001 From: "John Hodge (sonata)" Date: Sat, 1 Dec 2012 16:53:57 +0800 Subject: [PATCH] Kernel/libc - Added prototypes --- KernelLand/Kernel/libc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/KernelLand/Kernel/libc.c b/KernelLand/Kernel/libc.c index a5f87e43..58c2e1af 100644 --- a/KernelLand/Kernel/libc.c +++ b/KernelLand/Kernel/libc.c @@ -15,6 +15,10 @@ #define RANDOM_SPRUCE 0xf12b039 // === PROTOTYPES === +unsigned long long strtoull(const char *str, char **end, int base); +unsigned long strtoul(const char *str, char **end, int base); +signed long long strtoll(const char *str, char **end, int base); +signed long strtol(const char *str, char **end, int base); #if 0 int atoi(const char *string); int ParseInt(const char *string, int *Val); -- 2.20.1