mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 02:17:36 +00:00
12 lines
145 B
C++
12 lines
145 B
C++
#include <sys/wait.h>
|
|
#include <unistd.h>
|
|
#include <assert.h>
|
|
|
|
extern "C" {
|
|
|
|
pid_t wait(int* wstatus)
|
|
{
|
|
return waitpid(-1, wstatus, 0);
|
|
}
|
|
|
|
}
|