mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 07:54: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);
|
|
}
|
|
|
|
}
|