aboutsummaryrefslogtreecommitdiff
path: root/elf/elf.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-02-22 07:10:59 +0000
committerUlrich Drepper <drepper@redhat.com>2000-02-22 07:10:59 +0000
commit7fe15ff0dcf169b7000d431c772b29ef9a33b860 (patch)
treea22799b104ef46b57830807e76e002ebd356c7ff /elf/elf.h
parent3f51c97ee37734bdf3e41252e71ffe40efca1e55 (diff)
downloadglibc-7fe15ff0dcf169b7000d431c772b29ef9a33b860.tar
glibc-7fe15ff0dcf169b7000d431c772b29ef9a33b860.tar.gz
glibc-7fe15ff0dcf169b7000d431c772b29ef9a33b860.tar.bz2
glibc-7fe15ff0dcf169b7000d431c772b29ef9a33b860.zip
Update.
* elf/elf.h (ELF32_ST_OTHER): Removed. (ELF64_ST_OTHER): Likewise.
Diffstat (limited to 'elf/elf.h')
-rw-r--r--elf/elf.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/elf/elf.h b/elf/elf.h
index 414b74d2c1..98adb3deae 100644
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -1,5 +1,5 @@
/* This file defines standard ELF types, structures, and macros.
- Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1995-1999, 2000 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
@@ -422,11 +422,9 @@ typedef struct
/* How to extract and insert information held in the st_other field. */
#define ELF32_ST_VISIBILITY(o) ((o) & 0x03)
-#define ELF32_ST_OTHER(o) ((o) & 0x03)
/* For ELF64 the definitions are the same. */
#define ELF64_ST_VISIBILITY(o) ELF32_ST_VISIBILITY (o)
-#define ELF64_ST_OTHER(o) ELF32_ST_OTHER (o)
/* Symbol visibility specification encoded in the st_other field. */
#define STV_DEFAULT 0 /* Default symbol visibility rules */