blob: d3afcf3c63f671b65fbfcaa4538e9accd6878a81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* Wait for a subprocess to finish. */
#include <syscall.h>
#include "tests/lib.h"
#include "tests/main.h"
void
test_main (void)
{
msg ("wait(exec()) = %d", wait (exec ("child-simple")));
}
|