view test/static.c @ 488:62f3c801b6ac

correct_type fix. type attribute.
author kono
date Sat, 17 Dec 2005 10:32:34 +0900
parents 32737bad7489
children a379da780856
line wrap: on
line source

int printf(const char *format, ...);


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

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

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