12 lines
197 B
C
12 lines
197 B
C
|
/* Waits for an invalid pid. This may fail or terminate the
|
||
|
process with -1 exit code. */
|
||
|
|
||
|
#include <syscall.h>
|
||
|
#include "tests/main.h"
|
||
|
|
||
|
void
|
||
|
test_main (void)
|
||
|
{
|
||
|
wait ((pid_t) 0x0c020301);
|
||
|
}
|