Changes in uspace/lib/math/generic/trunc.c [b336613f:47f7390f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/math/generic/trunc.c
rb336613f r47f7390f 68 68 } else { 69 69 /* Truncate irrelevant fraction bits */ 70 val.parts.fraction &= ~(UINT64_C(0x000fffffffffffff) >> exp);70 val.parts.fraction &= UINT64_C(0x000fffffffffffff) >> exp; 71 71 } 72 72
Note:
See TracChangeset
for help on using the changeset viewer.