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

/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dlex.c101 int *lex_match; member in struct:lexdata
117 ((lp->lexd.lex_match[lp->lexd.level++]=lp->lexd.lastc),\
122 #define poplevel(lp) (lp->lexd.lastc=lp->lexd.lex_match[--lp->lexd.level])
2402 if(lp->lexd.lex_match)
2403 lp->lexd.lex_match = (int*)realloc((char*)lp->lexd.lex_match,sizeof(int)*lp->lexd.lex_max);
2405 lp->lexd.lex_match = (int*)malloc(sizeof(int)*STACK_ARRAY);
2406 return(lp->lexd.lex_match!=0);

Completed in 47 milliseconds