Fix asm/charmap.h not including required header

This commit is contained in:
ISSOtm
2020-09-06 17:16:49 +02:00
parent d2285953d7
commit 0d7914bff7
2 changed files with 5 additions and 3 deletions

View File

@@ -11,6 +11,8 @@
#include <stdint.h> #include <stdint.h>
#include "asm/symbol.h"
#define MAXCHARMAPS 512 #define MAXCHARMAPS 512
#define CHARMAPLENGTH 16 #define CHARMAPLENGTH 16
#define MAXCHARNODES (MAXCHARMAPS * CHARMAPLENGTH + 1) #define MAXCHARNODES (MAXCHARMAPS * CHARMAPLENGTH + 1)

View File

@@ -17,12 +17,12 @@
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
#include "asm/symbol.h" #include "asm/charmap.h"
#include "asm/fstack.h" #include "asm/fstack.h"
#include "asm/lexer.h" #include "asm/lexer.h"
#include "asm/output.h"
#include "asm/main.h" #include "asm/main.h"
#include "asm/charmap.h" #include "asm/output.h"
#include "asm/symbol.h"
#include "asm/warning.h" #include "asm/warning.h"
#include "extern/err.h" #include "extern/err.h"