Mercurial > hg > CbC > old > device
view test/static.c @ 307:fda28752d301 stdarg-support
stdarg (varargs done... PowerPC, IA32 checked)
author | kono |
---|---|
date | Wed, 09 Jun 2004 23:01:18 +0900 |
parents | 096559f07a70 |
children | 0c256ea2a97e |
line wrap: on
line source
f() { static int count = 55; static int count1; printf("%d %d\n",count++,count1++); } main() { f(); f(); return 0; }