#include #ifndef __NR_waitpid #include #include pid_t waitpid(pid_t pid, int *status, int options) { return wait4(pid, status, options, 0); } #endif