wait.h 231 B

1234567891011121314151617
  1. #ifndef __GBLIBC_SYS_WAIT_H
  2. #define __GBLIBC_SYS_WAIT_H
  3. #include <sys/types.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. pid_t wait(int* code);
  8. pid_t waitpid(pid_t pid, int* code, int options);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif