Start of userprog tests.
[pintos-anon] / grading / userprog / create-normal.c
1 #include <stdio.h>
2 #include <syscall.h>
3
4 int
5 main (void) 
6 {
7   printf ("create(\"quux.dat\"): ");
8   printf ("%d\n", create ("quux.dat", 0));
9   printf ("survived\n");
10   return 0;
11 }