Mercurial > hg > CbC > old > device
diff mc-inline.h @ 462:f7c87020e6fe
inline
author | kono |
---|---|
date | Fri, 03 Dec 2004 01:05:17 +0900 |
parents | |
children | 50a59dfb4606 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mc-inline.h Fri Dec 03 01:05:17 2004 +0900 @@ -0,0 +1,24 @@ +/* Micro-C Partial Evaluator Part */ +/* $Id$ */ + +extern int pexpr(int e); + +extern void st_decl(int e1); +extern void st_if(int e1); +extern void st_do(int e1); +extern void st_while(int e1); +extern void st_for(int e1); +extern void st_switch(int e1); +extern void st_comp(int e1); +extern void st_break(int e1); +extern void st_continue(int e1); +extern void st_case(int e1); +extern void st_default(int e1); +extern void st_return(int e1); +extern void st_goto(int e1); +extern void st_asm(int e1); +extern void st_label(int e1); +extern void st_comment(int e1); + + +/* end */