ladybird/LibC/sys/wait.cpp

13 lines
127 B
C++
Raw Normal View History

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