X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fstrtoll.c;h=24c3e8edad642d34e27dbe9408dbbc9d56be55fd;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=41640a159e074a632540410f805a1b72026bf2a5;hpb=164e8c095e19af2595865d2713dd4d3d893b71e0;p=pdclib diff --git a/functions/stdlib/strtoll.c b/functions/stdlib/strtoll.c index 41640a1..24c3e8e 100644 --- a/functions/stdlib/strtoll.c +++ b/functions/stdlib/strtoll.c @@ -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; @@ -35,7 +32,8 @@ long long int strtoll( const char * s, char ** endptr, int base ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" #include