diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-11-13 06:45:19 -0600 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-11-13 06:45:19 -0600 |
commit | 7a2ad8cf392acfcaef319e722dda9101d4d8b6bd (patch) | |
tree | c525169182b6b1d21663865c26224974f4541aa1 /sysdeps/powerpc/fpu | |
parent | 50727aa76b42c3b989a8c0612eb7f63e29aa7fec (diff) | |
download | glibc-7a2ad8cf392acfcaef319e722dda9101d4d8b6bd.tar.gz glibc-7a2ad8cf392acfcaef319e722dda9101d4d8b6bd.tar.xz glibc-7a2ad8cf392acfcaef319e722dda9101d4d8b6bd.zip |
PowerPC: Fix __fe_mask_env export
This patch does not export __fe_mask_env anymore, only providing a compatibility symbol. It fixes BZ#14143.
Diffstat (limited to 'sysdeps/powerpc/fpu')
-rw-r--r-- | sysdeps/powerpc/fpu/fenv_libc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/powerpc/fpu/fenv_libc.h b/sysdeps/powerpc/fpu/fenv_libc.h index baa2a7d39a..cb15c1cecb 100644 --- a/sysdeps/powerpc/fpu/fenv_libc.h +++ b/sysdeps/powerpc/fpu/fenv_libc.h @@ -23,7 +23,9 @@ #include <ldsodefs.h> #include <sysdep.h> -libm_hidden_proto (__fe_nomask_env) +extern const fenv_t *__fe_nomask_env (void); + +extern const fenv_t *__fe_mask_env (void); /* The sticky bits in the FPSCR indicating exceptions have occurred. */ #define FPSCR_STICKY_BITS ((FE_ALL_EXCEPT | FE_ALL_INVALID) & ~FE_INVALID) |