1header: sys-wait.h 2macros: [] 3types: 4 - type_name: siginfo_t 5 - type_name: struct_rusage 6 - type_name: pid_t 7enums: [] 8objects: [] 9functions: 10 - name: wait 11 standards: 12 - POSIX 13 return_type: pid_t 14 arguments: 15 - type: int * 16 - name: wait4 17 standards: 18 - BSDExtensions 19 - POSIX 20 return_type: pid_t 21 arguments: 22 - type: pid_t 23 - type: int * 24 - type: int 25 - type: struct rusage * 26 - name: waitpid 27 standards: 28 - POSIX 29 return_type: pid_t 30 arguments: 31 - type: pid_t 32 - type: int * 33 - type: int 34