diff options
Diffstat (limited to 'fpu')
-rw-r--r-- | fpu/softfloat-native.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpu/softfloat-native.c b/fpu/softfloat-native.c index 9eba03540b..90fa8b9445 100644 --- a/fpu/softfloat-native.c +++ b/fpu/softfloat-native.c @@ -54,7 +54,7 @@ ldexpl(long double x, int n) { #if defined(_ARCH_PPC) /* correct (but slow) PowerPC rint() (glibc version is incorrect) */ -double qemu_rint(double x) +static double qemu_rint(double x) { double y = 4503599627370496.0; if (fabs(x) >= y) |