aboutsummaryrefslogtreecommitdiff
path: root/programs/src/kconfig_parser/symlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'programs/src/kconfig_parser/symlist.h')
-rw-r--r--programs/src/kconfig_parser/symlist.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/programs/src/kconfig_parser/symlist.h b/programs/src/kconfig_parser/symlist.h
index caa827a..88bf4b0 100644
--- a/programs/src/kconfig_parser/symlist.h
+++ b/programs/src/kconfig_parser/symlist.h
@@ -3,12 +3,13 @@
#include <stdbool.h>
#include <string.h>
-#include "boolexp.h"
+#include "cnfexpr.h"
struct symlist_el {
unsigned int id;
char *name;
- struct boolexp *be;
+ struct cnfexpr *be;
+ struct cnfexpr *re_be; // forward dependency
};
struct symlist {
struct symlist_el *array;