diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-01-30 20:44:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-01-30 20:44:00 +0000 |
commit | bd2a53eb5c189ec16dd248f8e381b9ff561110ee (patch) | |
tree | 6841fe6e5ad780c07c913fae0e0fd4288a756aa0 /sysdeps/unix/sysv/linux/ia64/bits | |
parent | df759c2a218d1b52cfaf199b24e9f35dc93a3af4 (diff) | |
download | glibc-bd2a53eb5c189ec16dd248f8e381b9ff561110ee.tar.gz glibc-bd2a53eb5c189ec16dd248f8e381b9ff561110ee.tar.xz glibc-bd2a53eb5c189ec16dd248f8e381b9ff561110ee.zip |
Update.
2004-01-30 Andreas Schwab <schwab@suse.de> * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (ILL_BREAK, FPE_DECOVF, FPE_DECDIV, FPE_DECERR, FPE_INVASC, FPE_INVDEC, SEGV_PSTKOVF): Remove underscore prefix from definition.
Diffstat (limited to 'sysdeps/unix/sysv/linux/ia64/bits')
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/bits/siginfo.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h b/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h index f5bbea397a..c3abe80de6 100644 --- a/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h +++ b/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h @@ -1,5 +1,5 @@ /* siginfo_t, sigevent and constants. Linux/ia64 version. - Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang <davidm@hpl.hp.com>. @@ -176,7 +176,7 @@ enum # ifdef __USE_GNU , ILL_BREAK -# define ILL_BREAK __ILL_BREAK +# define ILL_BREAK ILL_BREAK # endif }; @@ -201,15 +201,15 @@ enum # define FPE_FLTSUB FPE_FLTSUB # ifdef __USE_GNU , FPE_DECOVF -# define FPE_DECOVF __FPE_DECOVF +# define FPE_DECOVF FPE_DECOVF , FPE_DECDIV -# define FPE_DECDIV __FPE_DECDIV +# define FPE_DECDIV FPE_DECDIV , FPE_DECERR -# define FPE_DECERR __FPE_DECERR +# define FPE_DECERR FPE_DECERR , FPE_INVASC -# define FPE_INVASC __FPE_INVASC +# define FPE_INVASC FPE_INVASC , FPE_INVDEC -# define FPE_INVDEC __FPE_INVDEC +# define FPE_INVDEC FPE_INVDEC # endif }; @@ -222,7 +222,7 @@ enum # define SEGV_ACCERR SEGV_ACCERR # ifdef __USE_GNU , SEGV_PSTKOVF /* Paragraph stack overflow. */ -# define SEGV_PSTKOVF __SEGV_PSTKOVF +# define SEGV_PSTKOVF SEGV_PSTKOVF # endif }; |