2019-06-07 06:49:03 -03:00
|
|
|
#include <assert.h>
|
2019-02-24 11:19:32 -03:00
|
|
|
#include <sys/wait.h>
|
2019-05-22 08:21:17 -03:00
|
|
|
#include <unistd.h>
|
2019-02-24 11:19:32 -03:00
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
|
|
pid_t wait(int* wstatus)
|
|
|
|
|
{
|
2019-05-22 08:21:17 -03:00
|
|
|
return waitpid(-1, wstatus, 0);
|
2019-02-24 11:19:32 -03:00
|
|
|
}
|
|
|
|
|
}
|