From d12c420ca12c4997c77afa3c683f61234be5b397 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 14 Jan 2013 19:24:37 +0100 Subject: [PATCH] Add W* wait constants to stdlib.h. --- libc/include/stdlib.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h index d9d8ba4d..19ced578 100644 --- a/libc/include/stdlib.h +++ b/libc/include/stdlib.h @@ -26,6 +26,7 @@ #define _STDLIB_H 1 #include +#include __BEGIN_DECLS @@ -45,8 +46,6 @@ typedef int div_t, ldiv_t, lldiv_t; @include(size_t.h) @include(wchar_t.h) -/* TODO: WEXITSTATUS, WIFEXITED, WIFSIGNALED, WIFSTOPPED, WNOHANG, WSTOPSIG, WTERMSIG, WUNTRACED is missing here */ - void abort(void) __attribute__ ((noreturn)); int abs(int value); int atexit(void (*function)(void));