1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 00:55:07 +00:00
serenity/LibC/sys/wait.cpp

12 lines
134 B
C++

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