Changeset 1433ecda in mainline for uspace/lib/posix/src/stdlib/strtold.c
- Timestamp:
- 2018-04-04T15:42:37Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/src/stdlib/strtold.c
r47b2d7e3 r1433ecda 51 51 52 52 #ifndef HUGE_VALL 53 53 #define HUGE_VALL (+1.0l / +0.0l) 54 54 #endif 55 55 56 56 #ifndef abs 57 57 #define abs(x) (((x) < 0) ? -(x) : (x)) 58 58 #endif 59 59 60 60 /* If the constants are not defined, use double precision as default. */ 61 61 #ifndef LDBL_MANT_DIG 62 62 #define LDBL_MANT_DIG 53 63 63 #endif 64 64 #ifndef LDBL_MAX_EXP 65 65 #define LDBL_MAX_EXP 1024 66 66 #endif 67 67 #ifndef LDBL_MIN_EXP 68 68 #define LDBL_MIN_EXP (-1021) 69 69 #endif 70 70 #ifndef LDBL_DIG 71 71 #define LDBL_DIG 15 72 72 #endif 73 73 #ifndef LDBL_MIN 74 74 #define LDBL_MIN 2.2250738585072014E-308 75 75 #endif 76 76
Note:
See TracChangeset
for help on using the changeset viewer.