Changeset 777 for soft/giet_vm/giet_libs/math/s_fabs.c
- Timestamp:
- Feb 4, 2016, 6:25:22 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_libs/math/s_fabs.c
r581 r777 22 22 double fabs(double x) 23 23 { 24 u _int32_t high;24 uint32_t high; 25 25 GET_HIGH_WORD(high,x); 26 26 SET_HIGH_WORD(x,high&0x7fffffff);
Note: See TracChangeset
for help on using the changeset viewer.