xref: /reactos/modules/rostests/tests/count/count.c (revision c2c66aff)
1 #include <stdio.h>
2 
3 int n = 0;
4 
5 int
main(int argc,char * argv[])6 main (int argc, char * argv [])
7 {
8 	while (1) printf ("%d ", n ++ );
9 	return (0);
10 }
11 
12 /* EOF */
13