0018e4f64d13612e704d611a0bb44a2a008d9ca7
[pintos-anon] / src / tests / userprog / read-stdout.c
1 #include <stdio.h>
2 #include <syscall.h>
3 #include "tests/main.h"
4
5 void
6 test_main (void) 
7 {
8   char buf;
9   read (STDOUT_FILENO, &buf, 1);
10 }