From: Jim Meyering Date: Mon, 22 May 1995 04:43:36 +0000 (+0000) Subject: (__strtol): Remove prototype altogether. X-Git-Tag: textutils-1_12_1~152 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ec651d2263939b5244acc92b37e51793fa55359c;p=thirdparty%2Fcoreutils.git (__strtol): Remove prototype altogether. Move inclusion of xstrtol.h back so that it follows system headers. --- diff --git a/lib/xstrtol.c b/lib/xstrtol.c index 591493e50c..42d3758a69 100644 --- a/lib/xstrtol.c +++ b/lib/xstrtol.c @@ -2,12 +2,8 @@ #include #endif -#include "xstrtol.h" /* Get definition for __P before use. */ - #ifdef STDC_HEADERS #include -#else -__unsigned long int __strtol __P ((const char *, char **, int base)); #endif #ifdef HAVE_STRING_H @@ -39,6 +35,8 @@ extern int errno; #define LONG_MAX ((long int) (ULONG_MAX >> 1)) #endif +#include "xstrtol.h" + #define BKM_SCALE(x, scale_factor, error_return) \ do \ { \