Mercurial > hg > CbC > old > device
view test/static.c @ 935:7672a37e7545 default tip
Raspbery PI ARM support begin
author | kono |
---|---|
date | Sat, 24 Dec 2016 03:02:57 +0000 |
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; }