15 lines
187 B
C
15 lines
187 B
C
|
#include <stdio.h>
|
||
|
#include <syscall.h>
|
||
|
|
||
|
int
|
||
|
main (int argc, char **argv)
|
||
|
{
|
||
|
int i;
|
||
|
|
||
|
for (i = 0; i < argc; i++)
|
||
|
printf ("%s ", argv[i]);
|
||
|
printf ("\n");
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|