Commit 947f5fcbde4836d22386bb83e6839322912979a6
1 parent
5e10fc90
Add static qualifier to local functions
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6436 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
2 changed files
with
2 additions
and
2 deletions
fpu/softfloat-native.c
| ... | ... | @@ -54,7 +54,7 @@ ldexpl(long double x, int n) { |
| 54 | 54 | #if defined(_ARCH_PPC) |
| 55 | 55 | |
| 56 | 56 | /* correct (but slow) PowerPC rint() (glibc version is incorrect) */ |
| 57 | -double qemu_rint(double x) | |
| 57 | +static double qemu_rint(double x) | |
| 58 | 58 | { |
| 59 | 59 | double y = 4503599627370496.0; |
| 60 | 60 | if (fabs(x) >= y) | ... | ... |