view test/static.c @ 927:b491db049d74

Added tag current-release for changeset 4e73a22327a8
author kono
date Sun, 13 Apr 2014 10:20:02 +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;
}