diff options
Diffstat (limited to 'sysdeps/mips')
-rw-r--r-- | sysdeps/mips/bits/fenv.h | 4 | ||||
-rw-r--r-- | sysdeps/mips/fesetenv.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/mips/bits/fenv.h b/sysdeps/mips/bits/fenv.h index 0637bf7623..efa90b6dbd 100644 --- a/sysdeps/mips/bits/fenv.h +++ b/sysdeps/mips/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998 Free Software Foundation, Inc. +/* Copyright (C) 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -64,7 +64,7 @@ typedef unsigned short int fexcept_t; to the layout of the block written by the `fstenv'. */ typedef struct { - unsigned int fp_control_register; + unsigned int __fp_control_register; } fenv_t; 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); } |