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