Add "panic: action=fatal" to bochsrc.txt to avoid a potentially
[pintos-anon] / src / examples / ls.c
1 /* ls.c
2   
3    Lists the current directory. */
4
5 #include <syscall.h>
6
7 int
8 main (void) 
9 {
10   lsdir ();
11   return 0;
12 }