X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fstrtol.c;h=53c185238e898ca0e455e7a802dd20095bb56209;hb=b1fc26afebd4d557ff89a44bc21767a8704c3809;hp=dce035ea1f9bd8a254b36ce9cde74f4e18bbcb63;hpb=164e8c095e19af2595865d2713dd4d3d893b71e0;p=pdclib diff --git a/functions/stdlib/strtol.c b/functions/stdlib/strtol.c index dce035e..53c1852 100644 --- a/functions/stdlib/strtol.c +++ b/functions/stdlib/strtol.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strtol( const char *, char * *, int ) This file is part of the Public Domain C Library (PDCLib). @@ -25,7 +23,6 @@ long int strtol( const char * s, char ** endptr, int base ) } else { - /* FIXME: This breaks on some machines that round negatives wrongly */ rc = (long int)_PDCLIB_strtox_main( &p, (unsigned)base, (uintmax_t)LONG_MIN, (uintmax_t)( LONG_MIN / -base ), (int)( -( LONG_MIN % base ) ), &sign ); } if ( endptr != NULL ) *endptr = ( p != NULL ) ? (char *) p : (char *) s;