#include pid_t wait(int *status) { return waitpid((pid_t)-1, status, 0); } #ifdef TEST int main(void) { return 0; } #endif