Chromium Code Reviews| Index: fusl/src/math/remainderf.c |
| diff --git a/fusl/src/math/remainderf.c b/fusl/src/math/remainderf.c |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..420d3bfc447b2ef14ed93266da2abc082fc40fc5 |
| --- /dev/null |
| +++ b/fusl/src/math/remainderf.c |
| @@ -0,0 +1,10 @@ |
| +#include <math.h> |
| +#include "libc.h" |
| + |
| +float remainderf(float x, float y) |
| +{ |
| + int q; |
| + return remquof(x, y, &q); |
| +} |
| + |
| +weak_alias(remainderf, dremf); |