Implement a proper block layer with partition support.
[pintos-anon] / src / tests / userprog / close-stdin.c
1 /* Tries to close the keyboard input stream, which must either
2    fail silently or terminate with exit code -1. */
3
4 #include <syscall.h>
5 #include "tests/main.h"
6
7 void
8 test_main (void) 
9 {
10   close (0);
11 }