X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgetversion.c;h=0f440c71cc9a57cc73004d4627cb36444ac60481;hb=6e93b42a69e7a51b301e7ab383022dd4f59c2081;hp=eca294599e4f374103751838977272c3ce56723d;hpb=d87c39464604e74f580c7fae835be31a4c125c36;p=gnulib.git diff --git a/lib/getversion.c b/lib/getversion.c index eca294599..0f440c71c 100644 --- a/lib/getversion.c +++ b/lib/getversion.c @@ -1,5 +1,5 @@ /* getversion.c -- select backup filename type - Copyright (C) 1990 Free Software Foundation, Inc. + Copyright (C) 1990, 1998 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,15 +12,19 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Written by David MacKenzie */ +#if HAVE_CONFIG_H +# include +#endif + #include "backupfile.h" -#ifdef STDC_HEADERS -#include +#if STDC_HEADERS +# include #endif int argmatch (); @@ -28,12 +32,12 @@ void invalid_arg (); extern char *program_name; -static char *backup_args[] = +static const char *const backup_args[] = { "never", "simple", "nil", "existing", "t", "numbered", 0 }; -static enum backup_type backup_types[] = +static const enum backup_type backup_types[] = { simple, simple, numbered_existing, numbered_existing, numbered, numbered }; @@ -42,8 +46,7 @@ static enum backup_type backup_types[] = Unique abbreviations are accepted. */ enum backup_type -get_version (version) - char *version; +get_version (const char *version) { int i;