X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Finttypes%2Fstrtoimax.c;h=2d0fdf77c27e6500afa4465b36d7fedce88e202a;hb=98efea478cdf77a71eea5b2e3706b0a6ab34e1c2;hp=936389cbb97f8fd3392714cf1939117a8098568d;hpb=2829022b6506ec945c9f9143fd2d287a18349dd2;p=pdclib.old diff --git a/functions/inttypes/strtoimax.c b/functions/inttypes/strtoimax.c old mode 100755 new mode 100644 index 936389c..2d0fdf7 --- a/functions/inttypes/strtoimax.c +++ b/functions/inttypes/strtoimax.c @@ -88,7 +88,7 @@ int main( void ) /* one-complement and signed magnitude just as well. Anyone having a */ /* platform to test this on? */ errno = 0; -#if INTMAX_MAX == 0x7fffffffffffffffLL +#if INTMAX_MAX >> 62 == 1 /* testing "even" overflow, i.e. base is power of two */ TESTCASE( strtoimax( "9223372036854775807", NULL, 0 ) == INTMAX_MAX ); TESTCASE( errno == 0 ); @@ -102,7 +102,7 @@ int main( void ) TESTCASE( strtoimax( "-9223372036854775809", NULL, 0 ) == INTMAX_MIN ); TESTCASE( errno == ERANGE ); /* TODO: test "odd" overflow, i.e. base is not power of two */ -#elif LLONG_MAX == 0x7fffffffffffffffffffffffffffffffLL +#elif LLONG_MAX >> 126 == 1 /* testing "even" overflow, i.e. base is power of two */ TESTCASE( strtoimax( "170141183460469231731687303715884105728", NULL, 0 ) == INTMAX_MAX ); TESTCASE( errno == 0 );