Created
September 14, 2018 01:17
-
-
Save grantseltzer/3634c10d8c2fa4c2ce38c9c83855ac78 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A Symbol represents an entry in an ELF symbol table section. | |
type Symbol struct { | |
Name string | |
Info byte | |
Other byte | |
Section SectionIndex | |
Value uint64 | |
Size uint64 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment