Make sure PTRDIFF_MIN, PTRDIFF_MAX, and SIZE_MAX have the proper types.
[pintos-anon] / grading / userprog / close-stdout.c
1 #include <stdio.h>
2 #include <syscall.h>
3
4 int
5 main (void) 
6 {
7   printf ("(close-stdout) begin\n");
8   close (1);
9   printf ("(close-stdout) end\n");
10   return 0;
11 }