Mercurial > hg > CbC > old > device
view test/static.c @ 512:53ec17a8af7d
inline continue....
author | kono |
---|---|
date | Sun, 25 Dec 2005 19:46:20 +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; }