From b2652e6b29c3d29766e1133c81612113084ee44a Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Tue, 6 Sep 2005 22:57:07 +0200 Subject: klibc: update to version 1.1.1 Signed-off-by: Kay Sievers --- klibc/include/stdlib.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'klibc/include/stdlib.h') diff --git a/klibc/include/stdlib.h b/klibc/include/stdlib.h index 54d45043f7..17efc30e5a 100644 --- a/klibc/include/stdlib.h +++ b/klibc/include/stdlib.h @@ -9,6 +9,8 @@ #include #include +#include + #define EXIT_FAILURE 1 #define EXIT_SUCCESS 0 @@ -28,7 +30,6 @@ __extern int atoi(const char *); __extern long atol(const char *); __extern long long atoll(const char *); __extern __noreturn exit(int); -__extern void free(void *); static __inline__ long labs(long __n) { return (__n < 0L) ? -__n : __n; } @@ -37,9 +38,6 @@ static __inline__ long long llabs(long long __n) { return (__n < 0LL) ? -__n : __n; } -__extern __mallocfunc void *malloc(size_t); -__extern __mallocfunc void *calloc(size_t, size_t); -__extern __mallocfunc void *realloc(void *, size_t); __extern long strtol(const char *, char **, int); __extern long long strtoll(const char *, char **, int); __extern unsigned long strtoul(const char *, char **, int); -- cgit v1.2.3-54-g00ecf