1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 07:54:58 +00:00
serenity/LibC/sys/wait.cpp
2019-02-24 15:20:07 +01:00

12 lines
127 B
C++

#include <sys/wait.h>
#include <assert.h>
extern "C" {
pid_t wait(int* wstatus)
{
(void)wstatus;
assert(false);
}
}