about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-01-29 03:25:37 +0000
committerUlrich Drepper <drepper@redhat.com>2003-01-29 03:25:37 +0000
commit1e2f8718598a4d8d8b35d3e505a033f33b242a71 (patch)
tree13af05b62bc92ede588f01635f7f7428c2b0ebb2 /sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c
parent1e49399dbe6abfaa6dcdbe3c8a6004e0efece1c2 (diff)
downloadglibc-1e2f8718598a4d8d8b35d3e505a033f33b242a71.tar.gz
glibc-1e2f8718598a4d8d8b35d3e505a033f33b242a71.tar.xz
glibc-1e2f8718598a4d8d8b35d3e505a033f33b242a71.zip
Update.
	(__fe_nomask_env): Change __prctl call to INTERNAL_SYSCALL.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c')
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c3
1 files changed, 2 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 6343c54b2d..16619cddd2 100644
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c
@@ -26,7 +26,8 @@
 const fenv_t *
 __fe_nomask_env (void)
 {
-  INLINE_SYSCALL (prctl, 2, PR_SET_FPEXC, PR_FP_EXC_PRECISE);
+  INTERNAL_SYSCALL_DECL (err);
+  INTERNAL_SYSCALL (prctl, err, 2, PR_SET_FPEXC, PR_FP_EXC_PRECISE);
 
   return FE_ENABLED_ENV;
 }