We will cross that bridge when we come to it.
[fw/pdclib] / functions / stdlib / strtoll.c
index 41640a159e074a632540410f805a1b72026bf2a5..bc952c7fd1fe4a9130c32cbd1a3e7632e495bd37 100644 (file)
@@ -25,7 +25,6 @@ long long int strtoll( const char * s, char ** endptr, int base )
     }
     else
     {
-        /* FIXME: This breaks on some machines that round negatives wrongly */
         rc = (long long int)_PDCLIB_strtox_main( &p, (unsigned)base, (uintmax_t)LLONG_MIN, (uintmax_t)( LLONG_MIN / -base ), (int)( -( LLONG_MIN % base ) ), &sign );
     }
     if ( endptr != NULL ) *endptr = ( p != NULL ) ? (char *) p : (char *) s;