We will cross that bridge when we come to it.
[fw/pdclib] / functions / inttypes / strtoimax.c
index 2d0fdf77c27e6500afa4465b36d7fedce88e202a..5bd7ec6daee1b2e4298cec5bf77522b667ad4b11 100644 (file)
@@ -25,7 +25,6 @@ intmax_t strtoimax( const char * _PDCLIB_restrict nptr, char ** _PDCLIB_restrict
     }
     else
     {
-        /* FIXME: This breaks on some machines that round negatives wrongly */
         rc = (intmax_t)_PDCLIB_strtox_main( &p, (unsigned)base, (uintmax_t)INTMAX_MIN, (uintmax_t)( INTMAX_MIN / -base ), (int)( -( INTMAX_MIN % base ) ), &sign );
     }
     if ( endptr != NULL ) *endptr = ( p != NULL ) ? (char *) p : (char *) nptr;