X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fstdlib%2Fstrtoll.c;h=b4476915b0a6b7c29fff1c17a8d8fa694746d01f;hb=7687305a3b17ce98ad15b3afc144f00ea29efb9b;hp=13a1a1de6cf609b27784b0b1262dd9bb76102d8f;hpb=cd2841543fbb2c422a104c0e5ba9536f0e589ecc;p=fw%2Fpdclib diff --git a/functions/stdlib/strtoll.c b/functions/stdlib/strtoll.c index 13a1a1d..b447691 100644 --- a/functions/stdlib/strtoll.c +++ b/functions/stdlib/strtoll.c @@ -84,9 +84,9 @@ int main( void ) endptr = NULL; TESTCASE( strtoll( overflow, &endptr, 0 ) == 0 ); TESTCASE( endptr == overflow ); - /* These tests assume two-complement, but conversion should work for */ - /* one-complement and signed magnitude just as well. Anyone having a */ - /* platform to test this on? */ + /* TODO: These tests assume two-complement, but conversion should work */ + /* for one-complement and signed magnitude just as well. Anyone having */ + /* a platform to test this on? */ errno = 0; #if LLONG_MAX == 0x7fffffffffffffffLL /* testing "even" overflow, i.e. base is power of two */