X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fbackupfile.c;h=34bde3cab56614c45bce32b5f958ab0b13f76691;hb=24a2f092937bbbfdb21a9eedf909fca820154561;hp=b0c39760747375692a3cad2087a40df01410c30f;hpb=5c2760a37a90fe3a22c5fddfb2dbf713b63beb32;p=gnulib.git diff --git a/lib/backupfile.c b/lib/backupfile.c index b0c397607..34bde3cab 100644 --- a/lib/backupfile.c +++ b/lib/backupfile.c @@ -1,6 +1,7 @@ /* backupfile.c -- make Emacs style backup file names - Copyright (C) 1990,91,92,93,94,95,96,97,98,99,2000, 2001, 2002 Free Software - Foundation, Inc. + + Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, + 1999, 2000, 2001, 2002, 2003 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 @@ -24,8 +25,8 @@ # include #endif +#include #include -#include #if HAVE_STRING_H # include #else @@ -80,12 +81,8 @@ char *malloc (); # define HAVE_DIR 0 #endif -#if HAVE_LIMITS_H -# include -#endif -#ifndef CHAR_BIT -# define CHAR_BIT 8 -#endif +#include + /* Upper bound on the string length of an integer converted to string. 302 / 1000 is ceil (log10 (2.0)). Subtract 1 for the sign bit; add 1 for integer division truncation; add 1 more for a minus sign. */ @@ -114,8 +111,8 @@ char *malloc (); to numbered) backup file name. */ const char *simple_backup_suffix = "~"; -static int max_backup_version PARAMS ((const char *, const char *)); -static int version_number PARAMS ((const char *, const char *, size_t)); +static int max_backup_version (const char *, const char *); +static int version_number (const char *, const char *, size_t); /* Return the name of the new backup file for file FILE, allocated with malloc. Return 0 if out of memory.