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