diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-05-27 21:48:42 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-05-27 21:48:42 +0200 |
commit | 16bbaa20140a575efbae7336cef6eb2484a0f367 (patch) | |
tree | 660e3707ab4281839d2a0eb77d7c5c7e09202611 /sys/include | |
parent | a788f2000dcba29d5cbb37b74550907b00f1c554 (diff) |
ape: include <sys/types.h> in <sys/wait.h> for pid_t (thanks jens staal)
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/ape/sys/wait.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/include/ape/sys/wait.h b/sys/include/ape/sys/wait.h index 8cc9e55a1..b2c307f1f 100644 --- a/sys/include/ape/sys/wait.h +++ b/sys/include/ape/sys/wait.h @@ -1,5 +1,10 @@ #ifndef __WAIT_H #define __WAIT_H + +#ifndef __TYPES_H +#include <sys/types.h> +#endif + #pragma lib "/$M/lib/ape/libap.a" /* flag bits for third argument of waitpid */ |