diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-28 05:59:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-28 05:59:24 +0000 |
commit | 68ff8426c6b8cf5dd93f2dd151ab21cb83fa990b (patch) | |
tree | 05c6b4b2f99ea028473c7aae25d9ca68c718941c /sysdeps/unix/sysv/linux/powerpc | |
parent | 809cd222384f058b6e59b08016ac5e1dbcf27711 (diff) | |
download | glibc-68ff8426c6b8cf5dd93f2dd151ab21cb83fa990b.tar.gz glibc-68ff8426c6b8cf5dd93f2dd151ab21cb83fa990b.tar.xz glibc-68ff8426c6b8cf5dd93f2dd151ab21cb83fa990b.zip |
Update.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c (__fe_nomask_env): Use __prctl not prctl. * sysdeps/unix/sysv/linux/syscalls.list: Add __prctl alias for prctl syscall.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c index 26950aa097..7e5cb5d2f4 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c @@ -24,7 +24,7 @@ const fenv_t * __fe_nomask_env (void) { - prctl (PR_SET_FPEXC, PR_FP_EXC_PRECISE); + __prctl (PR_SET_FPEXC, PR_FP_EXC_PRECISE); return FE_ENABLED_ENV; } |