diff options
Diffstat (limited to 'compat/strtol.c')
-rw-r--r-- | compat/strtol.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compat/strtol.c b/compat/strtol.c index 793f094..b111d97 100644 --- a/compat/strtol.c +++ b/compat/strtol.c @@ -10,7 +10,6 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ -#include <ctype.h> #include "tclInt.h" /* @@ -34,7 +33,7 @@ long int strtol( - CONST char *string, /* String of ASCII digits, possibly preceded + const char *string, /* String of ASCII digits, possibly preceded * by white space. For bases greater than 10, * either lower- or upper-case digits may be * used. */ @@ -46,7 +45,7 @@ strtol( * hex, "0" means octal, anything else means * decimal. */ { - register CONST char *p; + register const char *p; long result; /* |