home *** CD-ROM | disk | FTP | other *** search
- #ifndef __libgxx_sys_wait_h
-
- extern "C" {
- #ifdef __sys_wait_h_recursive
- #include_next <sys/wait.h>
- #else
- #define __sys_wait_h_recursive
-
- #ifdef VMS
- #include "GNU_CC_INCLUDE:[sys]wait.h"
- #else
- #include_next <sys/wait.h>
- #endif
-
- #define __libgxx_sys_wait_h 1
-
- struct rusage;
- extern pid_t wait(int*);
- extern pid_t waitpid(pid_t, int*, int);
- extern pid_t wait3(int*, int, struct rusage*);
- extern pid_t wait4(pid_t, int*, int, struct rusage*);
- #endif
- }
-
- #endif