Wording.
[pintos.git] / src / examples / halt.c
blobbad7250772f2856db66dd455231705483e27bb67
1 /* halt.c
3 Simple program to test whether running a user program works.
5 Just invokes a system call that shuts down the OS. */
7 #include <syscall.h>
9 int
10 main (void)
12 halt ();
13 /* not reached */