--- src/usr.bin/make/var.h 2005/08/07 08:16:52 1.41 +++ src/usr.bin/make/var.h 2005/09/24 07:25:57 1.42 @@ -69,19 +69,19 @@ extern bool checkEnvFirst; /* Do old-style variable substitution */ extern bool oldVars; -void Var_Append(const char *, const char *, struct GNode *); -void Var_Delete(const char *, struct GNode *); +void Var_Append(const char [], const char [], struct GNode *); +void Var_Delete(const char [], struct GNode *); void Var_Dump(void); -bool Var_Exists(const char *, struct GNode *); +bool Var_Exists(const char [], struct GNode *); void Var_Init(char **); size_t Var_Match(const char [], struct GNode *); -char *Var_Parse(const char *, struct GNode *, bool, size_t *, bool *); +char *Var_Parse(const char [], struct GNode *, bool, size_t *, bool *); void Var_Print(struct Lst *, bool); -void Var_Set(const char *, const char *, struct GNode *); -void Var_SetGlobal(const char *, const char *); -void Var_SetEnv(const char *, struct GNode *); -struct Buffer *Var_Subst(const char *, struct GNode *, bool); -struct Buffer *Var_SubstOnly(const char *, const char *, bool); +void Var_Set(const char [], const char [], struct GNode *); +void Var_SetGlobal(const char [], const char []); +void Var_SetEnv(const char [], struct GNode *); +struct Buffer *Var_Subst(const char [], struct GNode *, bool); +struct Buffer *Var_SubstOnly(const char [], const char [], bool); const char *Var_Value(const char [], struct GNode *); #endif /* var_h_9cccafce */