diff --git a/include/link/symbol.h b/include/link/symbol.h index 3733cdf6..14210f7e 100644 --- a/include/link/symbol.h +++ b/include/link/symbol.h @@ -19,7 +19,7 @@ struct Symbol { /* Info contained in the object files */ char *name; - enum SymbolType type; + enum ExportLevel type; char const *objFileName; char *fileName; int32_t lineNo; diff --git a/include/linkdefs.h b/include/linkdefs.h index 74665805..e154791e 100644 --- a/include/linkdefs.h +++ b/include/linkdefs.h @@ -59,7 +59,7 @@ enum SectionType { SECTTYPE_INVALID }; -enum SymbolType { +enum ExportLevel { SYMTYPE_LOCAL, SYMTYPE_IMPORT, SYMTYPE_EXPORT