blob: eacee66aebbf5d9bab60294e87b3f8142015d2a4 [file]
#include <sys/wait.h>
#include <stddef.h>
int main() {
// The current implementation uses the stub symbol __syscall_wait4.
// This test exists simply to ensure that it compiles and links.
waitpid(0, NULL, 0);
wait3(NULL, 0, NULL);
wait4(0, NULL, 0, NULL);
}