shithub: rgbds

Download patch

ref: a7c0616cd8f2e2f141e0d7233702bb5516c09031
parent: 51d5ff056766b327c939edf7f4b5323b69cba5d3
author: ISSOtm <eldredhabert0@gmail.com>
date: Tue Jan 21 05:54:16 EST 2020

Rename export type enum to that
This prevents a conflict in the next commit

--- 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;
--- a/include/linkdefs.h
+++ b/include/linkdefs.h
@@ -59,7 +59,7 @@
 	SECTTYPE_INVALID
 };
 
-enum SymbolType {
+enum ExportLevel {
 	SYMTYPE_LOCAL,
 	SYMTYPE_IMPORT,
 	SYMTYPE_EXPORT