]> pd.if.org Git - pdclib/blobdiff - functions/inttypes/strtoimax.c
We will cross that bridge when we come to it.
[pdclib] / functions / inttypes / strtoimax.c
old mode 100755 (executable)
new mode 100644 (file)
index 2d0fdf7..5bd7ec6
@@ -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;