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