blob: ed4e7a9a42024d5fb11717474580a4cdecd5aab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* IMPORTANT: leave this comment in the first line of this source file. */
/* this will guarantee that line 1 contains no code. */
#include <stdio.h>
int
main(argc, argv)
int argc;
char **argv;
{
int i = 1;
#ifdef usestubs
set_debug_traps();
breakpoint();
#endif
if (argc <= 0 || argc > 8)
return -1;
while (i < argc)
printf ("%s ", argv[i++]);
return 0;
}
|