X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=lib%2Fxstrtol.c;h=88071cdc53b3403aa473c053e3f8d4932997130d;hb=2bda83b48d8a6807632312403561b11b79048443;hp=b677ef9ffa828e34ed5bed736cc284c2df1330d9;hpb=9efbc4be3b8910063894d3ac933841edc683171a;p=chaz%2Ftar diff --git a/lib/xstrtol.c b/lib/xstrtol.c index b677ef9..88071cd 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 @@ -78,19 +78,19 @@ extern int errno; #include "xstrtol.h" -#ifndef strtol +#if !HAVE_DECL_STRTOL && !defined strtol long int strtol (); #endif -#ifndef strtoul +#if !HAVE_DECL_STRTOUL && !defined strtoul unsigned long int strtoul (); #endif -#ifndef strtoimax +#if !HAVE_DECL_STRTOIMAX && !defined strtoimax intmax_t strtoimax (); #endif -#ifndef strtoumax +#if !HAVE_DECL_STRTOUMAX && !defined strtoumax uintmax_t strtoumax (); #endif