We will cross that bridge when we come to it.
[fw/pdclib] / functions / stdlib / strtol.c
index dce035ea1f9bd8a254b36ce9cde74f4e18bbcb63..367b6789fdd44e75d53f048be3a17b3741951ad2 100644 (file)
@@ -25,7 +25,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;