From 1e49399dbe6abfaa6dcdbe3c8a6004e0efece1c2 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 29 Jan 2003 03:14:29 +0000 Subject: Update. 2003-01-28 Steven Munroe * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c (__fe_nomask_env): Change __prctl call to INLINE_SYSCALL. --- sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c index 7e5cb5d2f4..6343c54b2d 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c @@ -19,12 +19,14 @@ #include #include +#include +#include #include const fenv_t * __fe_nomask_env (void) { - __prctl (PR_SET_FPEXC, PR_FP_EXC_PRECISE); + INLINE_SYSCALL (prctl, 2, PR_SET_FPEXC, PR_FP_EXC_PRECISE); return FE_ENABLED_ENV; } -- cgit v1.2.3