Changeset 777 for soft/giet_vm/giet_libs/math/s_copysign.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_copysign.c
r581 r777 24 24 double copysign(double x, double y) 25 25 { 26 u _int32_t hx,hy;26 uint32_t hx,hy; 27 27 GET_HIGH_WORD(hx,x); 28 28 GET_HIGH_WORD(hy,y);
Note: See TracChangeset
for help on using the changeset viewer.