From d52ef67d5195d36ff12d7248b035aaea3f51a147 Mon Sep 17 00:00:00 2001 From: Lauri Kasanen Date: Wed, 12 Oct 2022 10:28:14 +0300 Subject: [PATCH] Fix compilation after the postproc merge --- src/cc65/input.h | 3 +-- src/cc65/preproc.h | 12 +----------- 2 files changed, 2 insertions(+), 13 deletions(-) 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 */