]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/strtoll.c
Comment cleanups.
[pdclib] / functions / stdlib / strtoll.c
index 41640a159e074a632540410f805a1b72026bf2a5..076515210bb4808d622e3dcc0b972d00647383df 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* strtoll( const char *, char * *, int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -25,7 +23,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;