11 lines
182 B
C
Executable file
11 lines
182 B
C
Executable file
/* Executes and waits for a single child process. */
|
|
|
|
#include <syscall.h>
|
|
#include "tests/lib.h"
|
|
#include "tests/main.h"
|
|
|
|
void
|
|
test_main (void)
|
|
{
|
|
wait (exec ("child-simple"));
|
|
}
|