add a missing section header table index conversion
[tangerine.git] / compiler / clib / include / sys / wait.h
blob7d2f6aa6ceef6f1d2348c38745b11432514578fb
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 pid_t wait(int *status);
16 //pid_t waitpid(pid_t, int *, int);
18 //struct rusage;
19 //pid_t wait3(int *, int, struct rusage *);
20 //pid_t wait4(pid_t, int *, int, struct rusage *);
22 #endif /* SYS_WAIT_H_ */