diff options
author | das <das@FreeBSD.org> | 2012-01-20 06:51:41 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2012-01-20 06:51:41 +0000 |
commit | eb8ecc65f7fa5c02118488dbceb9bc57176e4867 (patch) | |
tree | c2ccfaaeb9988f5b69ae2f4a8fe07194ba511789 /sys/ia64/include/float.h | |
parent | 6003be2b93b55b2c4ddc36327b2368bfbf1cd580 (diff) | |
download | FreeBSD-src-eb8ecc65f7fa5c02118488dbceb9bc57176e4867.zip FreeBSD-src-eb8ecc65f7fa5c02118488dbceb9bc57176e4867.tar.gz |
Add parentheses where required. Without them, `sizeof LDBL_MAX'
is a syntax error and shouldn't be, while `1 FLT_ROUNDS' isn't a
syntax error and should be. Thanks to bde for the examples.
Diffstat (limited to 'sys/ia64/include/float.h')
-rw-r--r-- | sys/ia64/include/float.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/ia64/include/float.h b/sys/ia64/include/float.h index 2ae58a9..40c3307 100644 --- a/sys/ia64/include/float.h +++ b/sys/ia64/include/float.h @@ -49,9 +49,9 @@ __END_DECLS #define FLT_MANT_DIG 24 /* p */ #define FLT_EPSILON 1.19209290E-07F /* b**(1-p) */ #define FLT_DIG 6 /* floor((p-1)*log10(b))+(b == 10) */ -#define FLT_MIN_EXP -125 /* emin */ +#define FLT_MIN_EXP (-125) /* emin */ #define FLT_MIN 1.17549435E-38F /* b**(emin-1) */ -#define FLT_MIN_10_EXP -37 /* ceil(log10(b**(emin-1))) */ +#define FLT_MIN_10_EXP (-37) /* ceil(log10(b**(emin-1))) */ #define FLT_MAX_EXP 128 /* emax */ #define FLT_MAX 3.40282347E+38F /* (1-b**(-p))*b**emax */ #define FLT_MAX_10_EXP 38 /* floor(log10((1-b**(-p))*b**emax)) */ @@ -59,9 +59,9 @@ __END_DECLS #define DBL_MANT_DIG 53 #define DBL_EPSILON 2.2204460492503131E-16 #define DBL_DIG 15 -#define DBL_MIN_EXP -1021 +#define DBL_MIN_EXP (-1021) #define DBL_MIN 2.2250738585072014E-308 -#define DBL_MIN_10_EXP -307 +#define DBL_MIN_10_EXP (-307) #define DBL_MAX_EXP 1024 #define DBL_MAX 1.7976931348623157E+308 #define DBL_MAX_10_EXP 308 |