Home | History | Annotate | Download | only in make

Lines Matching defs:endc

1994 		char endc;
2007 endc = '}';
2009 endc = ')';
2017 if (strncmp(p, "MAKE", 4) == 0 && p[4] == endc)
2055 char endc; /* '>' or '"' */
2069 endc = *p++ == '<' ? '>' : '"';
2072 while (*p != '\0' && *p != endc)
2075 if (*p != endc) {
2077 "Unclosed .include filename, \"%c\" expected", endc);
2084 IncludeFile(file.str, endc == '>', directive[0] == 'd', silent);