diff options
author | nsz <nsz@port70.net> | 2012-03-23 01:26:04 +0100 |
---|---|---|
committer | nsz <nsz@port70.net> | 2012-03-23 01:26:04 +0100 |
commit | 6d8df2b9720b7133a0735c9d5a2aae55021bb2c2 (patch) | |
tree | b35454f181b89ffdf4c254a57c2b0ebb626cfcab /src/math | |
parent | cb8fce4b4fa4557641e8ca4cc7061a7de9e44749 (diff) | |
download | musl-6d8df2b9720b7133a0735c9d5a2aae55021bb2c2.tar.gz musl-6d8df2b9720b7133a0735c9d5a2aae55021bb2c2.tar.bz2 musl-6d8df2b9720b7133a0735c9d5a2aae55021bb2c2.tar.xz musl-6d8df2b9720b7133a0735c9d5a2aae55021bb2c2.zip |
minor rintl.c fix: remove unsupported ldbl format message
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/rintl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/math/rintl.c b/src/math/rintl.c index 6a311a9d..b13cfeb3 100644 --- a/src/math/rintl.c +++ b/src/math/rintl.c @@ -42,8 +42,6 @@ shift[2] = { 0x1.0p63, -0x1.0p63 #elif LDBL_MANT_DIG == 113 0x1.0p112, -0x1.0p112 -#else -#error "Unsupported long double format" #endif }; static const float zero[2] = { 0.0, -0.0 }; |