diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-01-16 14:52:48 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-01-16 14:53:53 +0530 |
commit | dd930cc57100377d02a45b9113d6a3dc93136cbc (patch) | |
tree | 8623c4e1c807e27ae641de55c21823058b6c39d1 /sysdeps | |
parent | 1aa6176780752567fa85a22d25185f78d0419c76 (diff) | |
download | glibc-dd930cc57100377d02a45b9113d6a3dc93136cbc.tar.gz glibc-dd930cc57100377d02a45b9113d6a3dc93136cbc.tar.xz glibc-dd930cc57100377d02a45b9113d6a3dc93136cbc.zip |
Fix the value of TWO
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/ieee754/dbl-64/mpa2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/dbl-64/mpa2.h b/sysdeps/ieee754/dbl-64/mpa2.h index b80bf412e9..a4a6bddea1 100644 --- a/sysdeps/ieee754/dbl-64/mpa2.h +++ b/sysdeps/ieee754/dbl-64/mpa2.h @@ -36,7 +36,7 @@ #define ZERO 0.0 /* 0 */ #define ONE 1.0 /* 1 */ #define MONE -1.0 /* -1 */ -#define TWO -2.0 /* -2 */ +#define TWO 2.0 /* 2 */ #define TWO5 0x1.0p5 /* 2^5 */ #define TWO10 0x1.0p10 /* 2^10 */ #define TWO18 0x1.0p18 /* 2^18 */ |