diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index 78fe710f..2b14c242 100644 --- a/src/common.h +++ b/src/common.h @@ -227,6 +227,12 @@ enum class LinkingEntryType { SymbolInfo = 2, }; +enum class SymbolBinding { + Global = 0, + Weak = 1, + Local = 2, +}; + /* matches binary format, do not change */ enum class ExternalKind { Func = 0, |