Mercurial > hg > CbC > old > device
annotate test/static.c @ 751:c921670e2ce8
i64 continue... 64bit register
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 14 Nov 2010 04:56:02 +0900 |
parents | 293f827ccfb2 |
children |
rev | line source |
---|---|
467 | 1 int printf(const char *format, ...); |
157 | 2 |
553 | 3 #ifndef INLINE |
4 #define INLINE | |
5 #endif | |
157 | 6 |
553 | 7 INLINE void |
157 | 8 f() |
9 { | |
10 static int count = 55; | |
11 static int count1; | |
12 | |
553 | 13 printf("#0012:%d %d\n",count++,count1++); |
157 | 14 |
15 } | |
553 | 16 int |
157 | 17 main() |
18 { | |
19 f(); | |
20 f(); | |
172 | 21 return 0; |
157 | 22 } |