Index: fusl/src/math/remainder.c |
diff --git a/fusl/src/math/remainder.c b/fusl/src/math/remainder.c |
index 6cd089c467cee72945007f92814f60926c98c836..ac85ee7282441681eda353c17b38a2f9ab8da4e9 100644 |
--- a/fusl/src/math/remainder.c |
+++ b/fusl/src/math/remainder.c |
@@ -1,10 +1,9 @@ |
#include <math.h> |
#include "libc.h" |
-double remainder(double x, double y) |
-{ |
- int q; |
- return remquo(x, y, &q); |
+double remainder(double x, double y) { |
+ int q; |
+ return remquo(x, y, &q); |
} |
weak_alias(remainder, drem); |