API change! rc_config_env is renamed to rc_make_env and takes no argument.

This commit is contained in:
Roy Marples
2007-09-18 12:20:55 +00:00
parent 807e4afbed
commit c8b03c96b7
6 changed files with 9 additions and 6 deletions

View File

@ -578,8 +578,9 @@ static bool file_regex (const char *file, const char *regex)
}
#endif
char **rc_config_env (char **env)
char **rc_make_env (void)
{
char **env = NULL;
char *line;
int i;
char *p;
@ -723,4 +724,4 @@ char **rc_config_env (char **env)
return (env);
}
librc_hidden_def(rc_config_env)
librc_hidden_def(rc_make_env)