mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
10 lines
161 B
C++
10 lines
161 B
C++
|
void printf (string, ...) = #0;
|
||
|
integer main (integer argc, string *argv)
|
||
|
{
|
||
|
integer i;
|
||
|
|
||
|
for (i = 0; i < argc; i++)
|
||
|
printf ("%s\n", argv[i]);
|
||
|
return 0;
|
||
|
}
|