* src/xheader.c (strtoimax, strtoumax): Remove decls; now done

in system.h.
This commit is contained in:
Paul Eggert
2005-11-06 22:48:34 +00:00
parent 85ce2c24f8
commit ef9ad717ba
2 changed files with 13 additions and 10 deletions

View File

@@ -1,3 +1,8 @@
2005-11-06 Paul Eggert <eggert@cs.ucla.edu>
* src/xheader.c (strtoimax, strtoumax): Remove decls; now done
in system.h.
2005-11-06 Sergey Poznyakoff <gray@gnu.org.ua> 2005-11-06 Sergey Poznyakoff <gray@gnu.org.ua>
* doc/tar.texi: Properly document incremental dumps * doc/tar.texi: Properly document incremental dumps
@@ -24,6 +29,11 @@
* doc/tar.texi: Update. * doc/tar.texi: Update.
* doc/Makefile.am: Update. * doc/Makefile.am: Update.
2005-11-04 Paul Eggert <eggert@cs.ucla.edu>
* src/extract.c (set_stat): Rewrite to avoid bug in Forte
Developer 7 C 5.4 Patch 111708-09 (2004-02-19).
2005-11-04 Sergey Poznyakoff <gray@gnu.org.ua> 2005-11-04 Sergey Poznyakoff <gray@gnu.org.ua>
* bootstrap: Fix quoting in help output. * bootstrap: Fix quoting in help output.

View File

@@ -28,13 +28,6 @@
#include <fnmatch.h> #include <fnmatch.h>
#if !HAVE_DECL_STRTOIMAX && !defined strtoimax
intmax_t strtoimax ();
#endif
#if !HAVE_DECL_STRTOUMAX && !defined strtoumax
uintmax_t strtoumax ();
#endif
static bool xheader_protected_pattern_p (char const *pattern); static bool xheader_protected_pattern_p (char const *pattern);
static bool xheader_protected_keyword_p (char const *keyword); static bool xheader_protected_keyword_p (char const *keyword);
static void xheader_set_single_keyword (char *) __attribute__ ((noreturn)); static void xheader_set_single_keyword (char *) __attribute__ ((noreturn));