1
1

Renamed version to show_version to avoid name clashes.

Этот коммит содержится в:
Roland Illig 2004-08-17 10:40:16 +00:00
родитель 5689ee5699
Коммит 2ebf787653
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1856,7 +1856,7 @@ print_mc_usage (poptContext ctx, FILE *stream)
("\n"
"Please send any bug reports (including the output of `mc -V')\n"
"to mc-devel@gnome.org\n"), stream);
version (0);
show_version (0);
}
static void
@ -1888,7 +1888,7 @@ process_args (poptContext ctx, int c, const char *option_arg)
{
switch (c) {
case 'V':
version (1);
show_version (1);
exit (0);
break;

Просмотреть файл

@ -109,7 +109,7 @@ static const char *const features[] = {
};
void
version (int verbose)
show_version (int verbose)
{
int i;

Просмотреть файл

@ -3,6 +3,6 @@
/* Features of the text mode edition */
extern void version (int verbose);
extern void show_version (int verbose);
#endif /* __TEXTCONF_H */