mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 03:12:54 +00:00
11 lines
144 B
C++
11 lines
144 B
C++
#include <assert.h>
|
|
#include <sys/wait.h>
|
|
#include <unistd.h>
|
|
|
|
extern "C" {
|
|
|
|
pid_t wait(int* wstatus)
|
|
{
|
|
return waitpid(-1, wstatus, 0);
|
|
}
|
|
}
|