Mercurial > hg > CbC > old > device
view test/tmp2.c @ 721:76761a18703b recursive-macro
Recursive macro
author | kono |
---|---|
date | Wed, 11 Jun 2008 22:26:42 +0900 |
parents | 682c8ec38d45 |
children | 3f1f6c0610c1 |
line wrap: on
line source
#include "stdio.h" int main(ac,av) int ac; char *av[]; { int i; i=main0(ac,av); fprintf(stdout,"1: %s %d\n",av[0],i); return 0; } int main0(ac,av) int ac; char *av[]; { fprintf(stdout,"2: %s\n",av[0]); goto code0(av,__return,__environment); } __code code0(av,ret,retenv) char *av[]; __code (*ret)(); void *retenv; { char *p; p = av[0]; fprintf(stdout,"3: %s\n",p); goto code1(av,ret,retenv); } __code code1(av,ret,retenv) char *av[]; __code (*ret)(); void *retenv; { fprintf(stdout,"4: %s\n",av[0]); goto (*ret)(1234),retenv; }