view test/static.c @ 553:293f827ccfb2 linux-kernel-source

Linux kernel source compiled.
author kono
date Thu, 05 Jan 2006 21:29:55 +0900
parents a379da780856
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;
}