Changeset 58775d30 in mainline for uspace/lib/math/arch/amd64/include/libarch/math.h
- Timestamp:
- 2015-03-16T16:07:21Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2003739
- Parents:
- 6069061 (diff), 795e2bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/math/arch/amd64/include/libarch/math.h
r6069061 r58775d30 36 36 #define LIBMATH_amd64_MATH_H_ 37 37 38 #include <mathtypes.h> 38 39 #include <mod.h> 39 40 40 static inline double fmod(double dividend, doubledivisor)41 static inline float64_t fmod(float64_t dividend, float64_t divisor) 41 42 { 42 return double_mod(dividend, divisor);43 return float64_mod(dividend, divisor); 43 44 } 44 45 45 extern double sin(double);46 extern double cos(double);47 extern double trunc(double);46 extern float64_t sin(float64_t); 47 extern float64_t cos(float64_t); 48 extern float64_t trunc(float64_t); 48 49 49 50 #endif
Note:
See TracChangeset
for help on using the changeset viewer.