Index: fusl/src/math/arm/sqrtf.c |
diff --git a/fusl/src/math/arm/sqrtf.c b/fusl/src/math/arm/sqrtf.c |
index e65766552589fd37998c46956e97f87d32c502eb..5b51c156e9a0083544d09be329787f2c6a06e7c0 100644 |
--- a/fusl/src/math/arm/sqrtf.c |
+++ b/fusl/src/math/arm/sqrtf.c |
@@ -2,10 +2,9 @@ |
#if __VFP_FP__ && !__SOFTFP__ |
-float sqrtf(float x) |
-{ |
- __asm__ ("vsqrt.f32 %0, %1" : "=t"(x) : "t"(x)); |
- return x; |
+float sqrtf(float x) { |
+ __asm__("vsqrt.f32 %0, %1" : "=t"(x) : "t"(x)); |
+ return x; |
} |
#else |