00001 /* Child process run by exec-multiple, exec-one, wait-simple, and 00002 wait-twice tests. 00003 Just prints a single message and terminates. */ 00004 00005 #include <stdio.h> 00006 #include "tests/lib.h" 00007 00008 const char *test_name = "child-simple"; 00009 00010 int 00011 main (void) 00012 { 00013 msg ("run"); 00014 return 81; 00015 }