X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Finttypes%2Fstrtoimax.c;h=2d0fdf77c27e6500afa4465b36d7fedce88e202a;hb=8b89d285cdd747df206dfc7583500a695b24d984;hp=936389cbb97f8fd3392714cf1939117a8098568d;hpb=ef983399df8acb3c59a4a236b487613cf683d7aa;p=fw%2Fpdclib diff --git a/functions/inttypes/strtoimax.c b/functions/inttypes/strtoimax.c index 936389c..2d0fdf7 100755 --- 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 );