kandrot%netscape.com 2666b94554 Very simple test progam I am using to debug post_compile
git-svn-id: svn://10.0.0.236/trunk@84264 18797224-902f-48f8-a5cc-f745e15eee43
2001-01-02 09:20:40 +00:00

18 lines
226 B
C++

static short gLook = 0;
static int add( int a, int b)
{
return a + b;
}
long main( void )
{
long retVal = 0;
for (int i=0; i<100; i++)
{
retVal = add( retVal, i) + gLook;
}
return retVal;
}