Index: fusl/src/math/arm/sqrt.c |
diff --git a/fusl/src/math/arm/sqrt.c b/fusl/src/math/arm/sqrt.c |
index c9c000831aa5b0e83a18892faff67accf2fb0291..20f559e40375d6a7abe16533e45bd82ab479062a 100644 |
--- a/fusl/src/math/arm/sqrt.c |
+++ b/fusl/src/math/arm/sqrt.c |
@@ -2,10 +2,9 @@ |
#if __VFP_FP__ && !__SOFTFP__ |
-double sqrt(double x) |
-{ |
- __asm__ ("vsqrt.f64 %P0, %P1" : "=w"(x) : "w"(x)); |
- return x; |
+double sqrt(double x) { |
+ __asm__("vsqrt.f64 %P0, %P1" : "=w"(x) : "w"(x)); |
+ return x; |
} |
#else |