Home
last modified time | relevance | path

Searched refs:lex_match (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dlex.c106 int *lex_match; member
122 ((lp->lexd.lex_match[lp->lexd.level++]=lp->lexd.lastc),\
127 #define poplevel(lp) (lp->lexd.lastc=lp->lexd.lex_match[--lp->lexd.level])
2568 if(lp->lexd.lex_match) in stack_grow()
2569 lp->lexd.lex_match = (int*)realloc((char*)lp->lexd.lex_match,sizeof(int)*lp->lexd.lex_max); in stack_grow()
2571 lp->lexd.lex_match = (int*)malloc(sizeof(int)*STACK_ARRAY); in stack_grow()
2572 return(lp->lexd.lex_match!=0); in stack_grow()