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