diff options
Diffstat (limited to 'sysdeps/x86_64/fpu/fegetround.c')
-rw-r--r-- | sysdeps/x86_64/fpu/fegetround.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/x86_64/fpu/fegetround.c b/sysdeps/x86_64/fpu/fegetround.c index 4796e80db2..b515d8afe7 100644 --- a/sysdeps/x86_64/fpu/fegetround.c +++ b/sysdeps/x86_64/fpu/fegetround.c @@ -20,7 +20,7 @@ #include <fenv.h> int -fegetround (void) +__fegetround (void) { int cw; /* We only check the x87 FPU unit. The SSE unit should be the same @@ -30,4 +30,6 @@ fegetround (void) return cw & 0xc00; } -libm_hidden_def (fegetround) +libm_hidden_def (__fegetround) +weak_alias (__fegetround, fegetround) +libm_hidden_weak (fegetround) |