view test/static.c @ 543:af90edc74aa5 decl_data_fix

struct init fix
author kono
date Mon, 02 Jan 2006 09:49:35 +0900
parents a379da780856
children 293f827ccfb2
line wrap: on
line source

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


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

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

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