Use HAVE_STRUCT_STAT_ST_BLOCKS, not deprecated HAVE_ST_BLOCKS.
[gnulib.git] / lib / xstrtol.c
index 0b91ed7..e7b2061 100644 (file)
@@ -78,7 +78,17 @@ extern int errno;
 
 #include "xstrtol.h"
 
-__strtol_t __strtol ();
+#ifndef strtol
+long int strtol ();
+#endif
+
+#ifndef strtoul
+unsigned long int strtoul ();
+#endif
+
+#ifndef strtoumax
+uintmax_t strtoumax ();
+#endif
 
 static int
 bkm_scale (__strtol_t *x, int scale_factor)