diff options
author | Roland McGrath <roland@gnu.org> | 1995-06-05 09:00:14 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-06-05 09:00:14 +0000 |
commit | 75598ca67e469359c3c0b6b8704dae17bf2b9d89 (patch) | |
tree | 924739f4fac614e2cdb9d85114843ea2e76bb346 /elf | |
parent | ded291197c7da40793b072cd5487434b252376d7 (diff) | |
download | glibc-75598ca67e469359c3c0b6b8704dae17bf2b9d89.tar glibc-75598ca67e469359c3c0b6b8704dae17bf2b9d89.tar.gz glibc-75598ca67e469359c3c0b6b8704dae17bf2b9d89.tar.bz2 glibc-75598ca67e469359c3c0b6b8704dae17bf2b9d89.zip |
Mon Jun 5 04:02:26 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* elf/elf.h (ELFMAG): Use \177 instead of \x7f. It seems GCC
insists on seeing the following E as part of hex 7FE, and
complaining that is wider than a byte.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/elf.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -73,7 +73,7 @@ typedef struct #define ELFMAG3 'F' /* Magic number byte 3 */ /* Conglomeration of the identification bytes, for easy testing as a word. */ -#define ELFMAG "\x7fELF" +#define ELFMAG "\177ELF" #define SELFMAG 4 #define EI_CLASS 4 /* File class byte index */ |