| Index: fusl/src/math/remainderf.c
|
| diff --git a/fusl/src/math/remainderf.c b/fusl/src/math/remainderf.c
|
| index 420d3bfc447b2ef14ed93266da2abc082fc40fc5..e3369613ca2fcddc4c4df7f3d726897962976d4e 100644
|
| --- a/fusl/src/math/remainderf.c
|
| +++ b/fusl/src/math/remainderf.c
|
| @@ -1,10 +1,9 @@
|
| #include <math.h>
|
| #include "libc.h"
|
|
|
| -float remainderf(float x, float y)
|
| -{
|
| - int q;
|
| - return remquof(x, y, &q);
|
| +float remainderf(float x, float y) {
|
| + int q;
|
| + return remquof(x, y, &q);
|
| }
|
|
|
| weak_alias(remainderf, dremf);
|
|
|