diff options
author | rsc <rsc> | 2006-07-17 01:58:13 +0000 |
---|---|---|
committer | rsc <rsc> | 2006-07-17 01:58:13 +0000 |
commit | b5f17007f41770fee97fa850635976ceb7aa7492 (patch) | |
tree | 779473b174de7542e73219aed716d1c666a08a11 /elf.h | |
parent | e0966f459f5543faf9e574b7415bec2bf11e6b42 (diff) | |
download | xv6-labs-b5f17007f41770fee97fa850635976ceb7aa7492.tar.gz xv6-labs-b5f17007f41770fee97fa850635976ceb7aa7492.tar.bz2 xv6-labs-b5f17007f41770fee97fa850635976ceb7aa7492.zip |
standarize on unix-like lowercase struct names
Diffstat (limited to 'elf.h')
-rw-r--r-- | elf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ #define ELF_MAGIC 0x464C457FU /* "\x7FELF" in little endian */ -struct Elf { +struct elfhdr { uint32_t magic; // must equal ELF_MAGIC uint8_t elf[12]; uint16_t type; @@ -18,7 +18,7 @@ struct Elf { uint16_t shstrndx; }; -struct Proghdr { +struct proghdr { uint32_t type; uint32_t offset; uint32_t va; |