Merge aicom-network-branch (without NDIS changes for now)
[reactos.git] / rostests / tests / count / count.c
1 /* $Id$
2 *
3 */
4 #include <stdio.h>
5
6 int n = 0;
7
8 int
9 main (int argc, char * argv [])
10 {
11 while (1) printf ("%d ", n ++ );
12 return (0);
13 }
14
15 /* EOF */