]> Dogcows Code - chaz/tar/blobdiff - lib/xstrtol.c
Started merging with cpio into paxutils.
[chaz/tar] / lib / xstrtol.c
index d7ca6cf5bee9fb4773030bbe78d9f918d318075f..88071cdc53b3403aa473c053e3f8d4932997130d 100644 (file)
@@ -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
 
-#if !HAVE_DECL_STRTOIMAX
+#if !HAVE_DECL_STRTOIMAX && !defined strtoimax
 intmax_t strtoimax ();
 #endif
 
-#if !HAVE_DECL_STRTOUMAX
+#if !HAVE_DECL_STRTOUMAX && !defined strtoumax
 uintmax_t strtoumax ();
 #endif
 
This page took 0.023243 seconds and 4 git commands to generate.