comparison test/tmp2.c @ 622:682c8ec38d45

_code へ
author kono
date Thu, 07 Sep 2006 11:50:17 +0900
parents 096559f07a70
children 76761a18703b
comparison
equal deleted inserted replaced
621:9397b34d6588 622:682c8ec38d45
18 { 18 {
19 fprintf(stdout,"2: %s\n",av[0]); 19 fprintf(stdout,"2: %s\n",av[0]);
20 goto code0(av,return,environment); 20 goto code0(av,return,environment);
21 } 21 }
22 22
23 code code0(av,ret,retenv) 23 __code code0(av,ret,retenv)
24 char *av[]; 24 char *av[];
25 code (*ret)(); 25 __code (*ret)();
26 void *retenv; 26 void *retenv;
27 { 27 {
28 char *p; 28 char *p;
29 p = av[0]; 29 p = av[0];
30 fprintf(stdout,"3: %s\n",p); 30 fprintf(stdout,"3: %s\n",p);
31 goto code1(av,ret,retenv); 31 goto code1(av,ret,retenv);
32 } 32 }
33 33
34 code code1(av,ret,retenv) 34 __code code1(av,ret,retenv)
35 char *av[]; 35 char *av[];
36 code (*ret)(); 36 __code (*ret)();
37 void *retenv; 37 void *retenv;
38 { 38 {
39 fprintf(stdout,"4: %s\n",av[0]); 39 fprintf(stdout,"4: %s\n",av[0]);
40 goto (*ret)(1234),retenv; 40 goto (*ret)(1234),retenv;
41 } 41 }