16 lines
272 B
C
16 lines
272 B
C
|
/* Child process run by exec-multiple, exec-one, wait-simple, and
|
||
|
wait-twice tests.
|
||
|
Just prints a single message and terminates. */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include "tests/lib.h"
|
||
|
|
||
|
const char *test_name = "child-simple";
|
||
|
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
msg ("run");
|
||
|
return 81;
|
||
|
}
|