blob: 54c2a65c3ce4eff878d40f8807e85d3709e5fc79 [file] [log] [blame]
#include <sys/wait.h>
pid_t wait(int* status) {
return waitpid((pid_t)-1, status, 0);
}