Home | Sort by: relevance | last modified time | path |
/src/usr.bin/make/ | |
main.c | 839 char *evalue = Var_Subst(varname, SCOPE_GLOBAL, VARE_EVAL); local in function:PrintVariable 841 printf("%s\n", evalue); 842 free(evalue); 846 char *evalue = Var_Subst(expr, SCOPE_GLOBAL, VARE_EVAL); local in function:PrintVariable 849 printf("%s\n", evalue); 850 free(evalue); |
parse.c | 1869 char *evalue; local in function:VarAssign_EvalSubst 1883 evalue = Var_Subst(uvalue, scope, 1887 Var_SetExpand(scope, name, evalue); 1889 *out_avalue = FStr_InitOwn(evalue); |