1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-22 08:40:55 +00:00
reactos/modules/rostests/tests/count/count.c

13 lines
130 B
C
Raw Normal View History

#include <stdio.h>
int n = 0;
int
main (int argc, char * argv [])
{
while (1) printf ("%d ", n ++ );
return (0);
}
/* EOF */