mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 00:55:07 +00:00
12 lines
134 B
C++
12 lines
134 B
C++
#include <sys/wait.h>
|
|
#include <assert.h>
|
|
|
|
extern "C" {
|
|
|
|
pid_t wait(int* wstatus)
|
|
{
|
|
(void)wstatus;
|
|
ASSERT_NOT_REACHED();
|
|
}
|
|
|
|
}
|