X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=lib%2Fxstrtol.c;h=d7ca6cf5bee9fb4773030bbe78d9f918d318075f;hb=fb1c65e512181db1c43c19c708a8e1c795cbd31c;hp=7bc733545c2ae8efc7ec1d7aea597cb4455b87cb;hpb=1ff433e49eae96e2a3fb16eff2da5b837f9f1e06;p=chaz%2Ftar diff --git a/lib/xstrtol.c b/lib/xstrtol.c index 7bc7335..d7ca6cf 100644 --- a/lib/xstrtol.c +++ b/lib/xstrtol.c @@ -1,5 +1,5 @@ /* A more useful interface to strtol. - Copyright (C) 1995, 1996, 1998-2000 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1998-2001 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 @@ -86,7 +86,11 @@ long int strtol (); unsigned long int strtoul (); #endif -#ifndef strtoumax +#if !HAVE_DECL_STRTOIMAX +intmax_t strtoimax (); +#endif + +#if !HAVE_DECL_STRTOUMAX uintmax_t strtoumax (); #endif