Fix link errors with GCC 10 and binutils 2.34 on Fedora
[pintos-anon] / src / tests / userprog / child-simple.c
1 /* Child process run by exec-multiple, exec-one, wait-simple, and
2    wait-twice tests.
3    Just prints a single message and terminates. */
4
5 #include <stdio.h>
6 #include "tests/lib.h"
7
8 int
9 main (void) 
10 {
11   test_name = "child-simple";
12
13   msg ("run");
14   return 81;
15 }