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