Mercurial > hg > CbC > old > device
comparison test/static.c @ 491:a379da780856
cond signed/unsigned
author | kono |
---|---|
date | Wed, 21 Dec 2005 11:33:53 +0900 |
parents | 32737bad7489 |
children | 293f827ccfb2 |
comparison
equal
deleted
inserted
replaced
490:95fcc858fd1c | 491:a379da780856 |
---|---|
4 f() | 4 f() |
5 { | 5 { |
6 static int count = 55; | 6 static int count = 55; |
7 static int count1; | 7 static int count1; |
8 | 8 |
9 printf("#0007:%d %d\n",count++,count1++); | 9 printf("#0008:%d %d\n",count++,count1++); |
10 | 10 |
11 } | 11 } |
12 | 12 |
13 main() | 13 main() |
14 { | 14 { |