From e0066876451ecfef0926cf994232729d15aca5b3 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 4 Mar 2012 21:49:03 +0100 Subject: [PATCH] Added abort(3) to . --- libmaxsi/include/stdlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmaxsi/include/stdlib.h b/libmaxsi/include/stdlib.h index 1e3bfb36..58fccec9 100644 --- a/libmaxsi/include/stdlib.h +++ b/libmaxsi/include/stdlib.h @@ -45,6 +45,7 @@ typedef int div_t, ldiv_t, lldiv_t; /* TODO: WEXITSTATUS, WIFEXITED, WIFSIGNALED, WIFSTOPPED, WNOHANG, WSTOPSIG, WTERMSIG, WUNTRACED is missing here */ +void abort(void); int atoi(const char*); void* calloc(size_t, size_t); void exit(int); @@ -61,7 +62,6 @@ long long strtoll(const char* restrict, char** restrict, int); /* TODO: These are not implemented in libmaxsi/sortix yet. */ #if defined(__SORTIX_SHOW_UNIMPLEMENTED) long a64l(const char* s); -void abort(void); int abs(int value); int atexit(void (*function)(void)); double atof(const char* value);