Changeset b69786e in mainline for uspace/lib/math/generic/fmod.c
- Timestamp:
- 2015-09-17T16:16:25Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3b23d05
- Parents:
- ba8eecf
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/math/generic/fmod.c
rba8eecf rb69786e 33 33 */ 34 34 35 #include <fmod.h> 35 36 #include <math.h> 36 #include <mod.h>37 37 38 38 /** Remainder function (32-bit floating point) … … 52 52 * 53 53 */ 54 float32_t float32_ mod(float32_t dividend, float32_t divisor)54 float32_t float32_fmod(float32_t dividend, float32_t divisor) 55 55 { 56 56 // FIXME: replace with exact arithmetics … … 77 77 * 78 78 */ 79 float64_t float64_ mod(float64_t dividend, float64_t divisor)79 float64_t float64_fmod(float64_t dividend, float64_t divisor) 80 80 { 81 81 // FIXME: replace with exact arithmetics
Note:
See TracChangeset
for help on using the changeset viewer.