Searched refs:infunc (Results 1 – 2 of 2) sorted by relevance
52 extern int infunc;109 <A>func(tion)? { if (infunc) ERROR "illegal nested function" SYNTAX; RET(FUNC); }110 <A>return { if (!infunc) ERROR "return not in function" SYNTAX; RET(RETURN); }140 if (c == '(' || c == '[' || infunc && (n=isarg(yytext+1)) >= 0) {194 if (c != '(' && infunc && (n=isarg(yytext)) >= 0) {
43 int infunc = 0; /* = 1 if in arglist or body of func */ variable194 | FUNC funcname '(' varlist rparen {infunc++;} lbrace stmtlist '}'195 { infunc--; curfname=0; defn((Cell *)$2, $4, $8); $$ = 0; }326 | NEXT st { if (infunc)