Mercurial > hg > CbC > old > device
view test/static.c @ 533:80b5058f0535 inline-code-gen-passed
inline code-gen test passed.
author | kono |
---|---|
date | Fri, 30 Dec 2005 18:33:55 +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; }