diff options
Diffstat (limited to 'sysdeps/mips/fesetenv.c')
-rw-r--r-- | sysdeps/mips/fesetenv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mips/fesetenv.c b/sysdeps/mips/fesetenv.c index 58df06391e..116fbaefce 100644 --- a/sysdeps/mips/fesetenv.c +++ b/sysdeps/mips/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1998. @@ -27,5 +27,5 @@ fesetenv (const fenv_t *envp) if (envp == FE_DFL_ENV) _FPU_SETCW (_FPU_DEFAULT); else - _FPU_SETCW (envp->fp_control_register); + _FPU_SETCW (envp->__fp_control_register); } |