view test/static.c @ 881:ab501cdbbefd

fix wrong src/dst type in pdecl_data_field
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 03 Apr 2014 17:49:05 +0900
parents 293f827ccfb2
children
line wrap: on
line source

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

#ifndef INLINE
#define INLINE
#endif

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

   printf("#0012:%d %d\n",count++,count1++);
  
}
int
main()
{
   f();
   f();
    return 0;
}