(strip_exit_codes) Include _ in the list of characters considered as
[pintos-anon] / grading / userprog / join-simple.c
1 #include <stdio.h>
2 #include <syscall.h>
3
4 int
5 main (void) 
6 {
7   printf ("(join-simple) begin\n");
8   printf ("(join-simple) join(exec()) = %d\n", join (exec ("child-simple")));
9   printf ("(join-simple) end\n");
10   return 0;
11 }