X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fstrtoll.c;h=b4476915b0a6b7c29fff1c17a8d8fa694746d01f;hb=80ab5b6195a66a678d3520b46105282bc32e99b2;hp=13a1a1de6cf609b27784b0b1262dd9bb76102d8f;hpb=e09c56012b4ba30db77af0c8ef2b4b494a1c4f50;p=pdclib.old 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 */