blob: 52d9f30c2b1fca126e43c9683ae979ea6e120245 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
int
main (int argc, char **argv)
{
int i;
#ifdef usestubs
set_debug_traps();
breakpoint();
#endif
for (i = 0; i < 100; i++)
printf (">>> %d\n", i); /* euphonium */
return 0;
}
|