=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/var.h,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/usr.bin/make/var.h 2007/07/20 12:32:45 1.4 --- src/usr.bin/make/var.h 2007/07/24 18:52:47 1.5 *************** *** 101,111 **** * callers who don't care don't need to. */ extern char var_Error[]; ! /* length = Var_ParseSkip(varspec, ctxt, &ok); ! * Parses a variable specification and returns the specification ! * length. Fills ok if the varspec is correct, that pointer can be ! * NULL if this information is not needed. */ ! extern size_t Var_ParseSkip(const char *, SymTable *, bool *); /* ok = Var_ParseBuffer(buf, varspec, ctxt, undef_is_bad, &length); * Similar to Var_Parse, except the value is directly appended to --- 101,110 ---- * callers who don't care don't need to. */ extern char var_Error[]; ! /* ok = Var_ParseSkip(&varspec, ctxt, &ok); ! * Parses a variable specification and returns true if the varspec ! * is correct. Advances pointer past specification. */ ! extern bool Var_ParseSkip(const char **, SymTable *); /* ok = Var_ParseBuffer(buf, varspec, ctxt, undef_is_bad, &length); * Similar to Var_Parse, except the value is directly appended to