* elf/elf.h (ELF32_ST_OTHER): Removed.
	(ELF64_ST_OTHER): Likewise.
This commit is contained in:
Ulrich Drepper 2000-02-22 07:10:59 +00:00
parent 3f51c97ee3
commit 7fe15ff0dc
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2000-02-21 Ulrich Drepper <drepper@redhat.com>
* elf/elf.h (ELF32_ST_OTHER): Removed.
(ELF64_ST_OTHER): Likewise.
* sysdeps/alpha/fpu/fpu_control.h: Update comment.
* malloc/Makefile (tests): Add tst-valloc.

View File

@ -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 */