home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / GNU_1OF3.ZIP / HEADERS.ZIP / g++-include / sys / wait.h < prev   
Encoding:
C/C++ Source or Header  |  1992-04-04  |  482 b   |  26 lines

  1. #ifndef __libgxx_sys_wait_h
  2.  
  3. extern "C" {
  4. #ifdef __sys_wait_h_recursive
  5. #include_next <sys/wait.h>
  6. #else
  7. #define __sys_wait_h_recursive
  8.  
  9. #ifdef VMS
  10. #include "GNU_CC_INCLUDE:[sys]wait.h"
  11. #else
  12. #include_next <sys/wait.h>
  13. #endif
  14.  
  15. #define __libgxx_sys_wait_h 1
  16.  
  17. struct rusage;
  18. extern pid_t wait(int*);
  19. extern pid_t waitpid(pid_t, int*, int);
  20. extern pid_t wait3(int*, int, struct rusage*);
  21. extern pid_t wait4(pid_t, int*, int, struct rusage*);
  22. #endif
  23. }
  24.  
  25. #endif
  26.