Add W* wait constants to stdlib.h.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-01-14 19:24:37 +01:00
parent cd1df6d088
commit d12c420ca1
1 changed files with 1 additions and 2 deletions

View File

@ -26,6 +26,7 @@
#define _STDLIB_H 1
#include <features.h>
#include <sortix/wait.h>
__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));