Revise makefile structure.
[pintos-anon] / src / tests / userprog / echo.c
1 #include <stdio.h>
2
3 int
4 main (int argc, char **argv)
5 {
6   int i;
7
8   for (i = 0; i < argc; i++)
9     printf ("%s ", argv[i]);
10   printf ("\n");
11
12   return 0;
13 }