diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2012-03-01 02:17:51 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2012-03-01 02:17:51 +0400 |
commit | 500ddabcd35f18421fc36dda945adcb212b595a3 (patch) | |
tree | 9f43f626290295595f6231de38bb0c8250b61166 /preproc.c | |
parent | 6a224e32a5cd4b82483649753a215a13b21e29cf (diff) | |
download | nasm-500ddabcd35f18421fc36dda945adcb212b595a3.tar.gz nasm-500ddabcd35f18421fc36dda945adcb212b595a3.tar.bz2 nasm-500ddabcd35f18421fc36dda945adcb212b595a3.zip |
preproc: Drop never used Cond structure
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'preproc.c')
-rw-r--r-- | preproc.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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; |