mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
12 lines
127 B
C++
12 lines
127 B
C++
#include <sys/wait.h>
|
|
#include <assert.h>
|
|
|
|
extern "C" {
|
|
|
|
pid_t wait(int* wstatus)
|
|
{
|
|
(void)wstatus;
|
|
assert(false);
|
|
}
|
|
|
|
}
|