mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
2199ae9003
svn path=/trunk/; revision=26010
15 lines
145 B
C
15 lines
145 B
C
/* $Id$
|
|
*
|
|
*/
|
|
#include <stdio.h>
|
|
|
|
int n = 0;
|
|
|
|
int
|
|
main (int argc, char * argv [])
|
|
{
|
|
while (1) printf ("%d ", n ++ );
|
|
return (0);
|
|
}
|
|
|
|
/* EOF */
|