Mercurial > hg > CbC > old > device
comparison test/too-long-argument.c @ 519:b6eb97f0c11d
*** empty log message ***
author | kono |
---|---|
date | Mon, 26 Dec 2005 19:54:10 +0900 |
parents | |
children | c562d1681275 |
comparison
equal
deleted
inserted
replaced
518:9f2d6aea201f | 519:b6eb97f0c11d |
---|---|
1 code | |
2 tcode1(f1,f2,f3,f4,f5,f6,f7,f8,f9,fa,fb,fc,fd,fe,ff,ret,env) | |
3 int f1,f2,f3,f4,f5,f6,f7,f8,f9,fa,fb,fc,fd,fe,ff; | |
4 code(*ret)(int); | |
5 void *env; | |
6 { | |
7 goto ret(0),env; | |
8 } | |
9 | |
10 code | |
11 tcode0(int x,int y,code(*junction)(int,int,int,int,int,int,int,int,int,int,int,int,int,int,int,int,code(*)(int),void *),code(*ret)(int),void *env) | |
12 { | |
13 | |
14 goto junction(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,ret,env); | |
15 } | |
16 | |
17 int | |
18 main() | |
19 { | |
20 goto tcode0(0,1,tcode1,return,environment); | |
21 } |