diff options
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/bits/fenv.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/bits/fenv.h b/sysdeps/generic/bits/fenv.h index 7552677d84..b192d94336 100644 --- a/sysdeps/generic/bits/fenv.h +++ b/sysdeps/generic/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1997, 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 @@ -44,7 +44,7 @@ XXX Probably we should also include the signal handler here. */ typedef struct { - unsigned int flags; + unsigned int __flags; } fexcept_t; @@ -52,7 +52,7 @@ fexcept_t; /* Type representing floating-point environment. */ typedef struct { - fexcept_t excepts; + fexcept_t __excepts; /* XXX I don't know what else we should save. */ } fenv_t; |