added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / compiler / clib / include / sys / wait.h
blobb925f9b91d1f91f9b2766905be6e49371d0fa43a
1 /*
2 Copyright © 2002-2004, The AROS Development Team.
3 All rights reserved.
5 $Id$
6 */
8 #ifndef SYS_WAIT_H_
9 #define SYS_WAIT_H_
11 #ifndef SYS_TYPES_H
12 #include <sys/types.h>
13 #endif
15 #define WNOHANG 0x00000001
16 #define WUNTRACED 0x00000002
17 #define WSTOPPED WUNTRACED
18 #define WEXITED 0x00000004
19 #define WCONTINUED 0x00000008
21 pid_t wait(int *status);
22 pid_t waitpid(pid_t pid, int *status, int options);
24 //struct rusage;
25 //pid_t wait3(int *, int, struct rusage *);
26 //pid_t wait4(pid_t, int *, int, struct rusage *);
28 #endif /* SYS_WAIT_H_ */