14 lines
187 B
C
Executable file
14 lines
187 B
C
Executable file
#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;
|
|
}
|