Changeset c0c38c7c in mainline for uspace/lib/math/arch/ia32/include/libarch/math.h
- Timestamp:
- 2015-03-14T21:36:44Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7f9d97f3
- Parents:
- 2c7fdaa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/math/arch/ia32/include/libarch/math.h
r2c7fdaa rc0c38c7c 36 36 #define LIBMATH_ia32_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.