scroll mode for very long start menus
[reactos.git] / reactos / apps / tests / count / count.c
1 /* $Id: count.c,v 1.2 2003/11/14 17:13:16 weiden Exp $
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 */