mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +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);
|
|
}
|
|
|
|
}
|