summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2012-03-01 02:17:51 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2012-03-01 02:17:51 +0400
commit500ddabcd35f18421fc36dda945adcb212b595a3 (patch)
tree9f43f626290295595f6231de38bb0c8250b61166
parent6a224e32a5cd4b82483649753a215a13b21e29cf (diff)
downloadnasm-500ddabcd35f18421fc36dda945adcb212b595a3.tar.gz
preproc: Drop never used Cond structure
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r--preproc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/preproc.c b/preproc.c
index 49277729..8c4b173c 100644
--- a/preproc.c
+++ b/preproc.c
@@ -89,7 +89,6 @@ typedef struct Token Token;
typedef struct Blocks Blocks;
typedef struct Line Line;
typedef struct Include Include;
-typedef struct Cond Cond;
typedef struct IncPath IncPath;
/*
@@ -284,7 +283,6 @@ struct ExpInv {
struct Include {
Include *next;
FILE *fp;
- Cond *conds;
ExpInv *expansion;
char *fname;
int lineno;