diff options
author | Andreas Schwab <schwab@suse.de> | 1999-05-22 17:14:30 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1999-05-22 17:14:30 +0000 |
commit | 0151001634ca06e77fcf4a3f6eedbb2c14ad2aeb (patch) | |
tree | 6726109504edf62d341fb3220b2b1ed491daf3dd /sysdeps/m68k/fpu/bits/fenv.h | |
parent | d32a40205f162b1d58b0e655bad3a3054f36ac8e (diff) | |
download | glibc-0151001634ca06e77fcf4a3f6eedbb2c14ad2aeb.tar glibc-0151001634ca06e77fcf4a3f6eedbb2c14ad2aeb.tar.gz glibc-0151001634ca06e77fcf4a3f6eedbb2c14ad2aeb.tar.bz2 glibc-0151001634ca06e77fcf4a3f6eedbb2c14ad2aeb.zip |
* sysdeps/m68k/fpu/bits/fenv.h (fenv_t): Prepend __ to member
names to protect from user's macro namespace.
* sysdeps/m68k/fpu/feholdexcpt.c, sysdeps/m68k/fpu/fesetenv.c:
Adapted.
Diffstat (limited to 'sysdeps/m68k/fpu/bits/fenv.h')
-rw-r--r-- | sysdeps/m68k/fpu/bits/fenv.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/m68k/fpu/bits/fenv.h b/sysdeps/m68k/fpu/bits/fenv.h index e1a278d333..3138fefe66 100644 --- a/sysdeps/m68k/fpu/bits/fenv.h +++ b/sysdeps/m68k/fpu/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 @@ -64,9 +64,9 @@ typedef unsigned int fexcept_t; corresponds to the layout of the block written by `fmovem'. */ typedef struct { - unsigned int control_register; - unsigned int status_register; - unsigned int instruction_address; + unsigned int __control_register; + unsigned int __status_register; + unsigned int __instruction_address; } fenv_t; |