diff --git a/src/cc65/input.h b/src/cc65/input.h index f9565229b..f56f12462 100644 --- a/src/cc65/input.h +++ b/src/cc65/input.h @@ -41,6 +41,7 @@ #include /* common */ +#include "coll.h" #include "strbuf.h" @@ -70,8 +71,6 @@ extern StrBuf* Line; extern char CurC; extern char NextC; -typedef struct Collection Collection; - /*****************************************************************************/ diff --git a/src/cc65/preproc.h b/src/cc65/preproc.h index a4619e545..153d0d68a 100644 --- a/src/cc65/preproc.h +++ b/src/cc65/preproc.h @@ -36,17 +36,7 @@ #ifndef PREPROC_H #define PREPROC_H - - -/*****************************************************************************/ -/* Forwards */ -/*****************************************************************************/ - - - -typedef struct Macro Macro; - - +#include "macrotab.h" /*****************************************************************************/ /* Data */