view test/static.c @ 281:1d60bbd8d3f8 mips-self-compile-passed

MIPS self compile passed.
author kono
date Sun, 23 May 2004 17:01:10 +0900
parents 096559f07a70
children 0c256ea2a97e
line wrap: on
line source



f()
{
   static int count = 55;
   static int count1;

   printf("%d %d\n",count++,count1++);
  
}

main()
{
   f();
   f();
    return 0;
}