From 3fb6326fc36c69aa0b66de4823b116d7c0a9486c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 1 May 2015 20:55:43 +0200 Subject: parse_kconfig rewriten parse_kconfig should now generate full dependency. It is not transforming whole expression to CNF, but only pairs. --- scripts/parse_kconfig/symlist.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'scripts/parse_kconfig/symlist.h') diff --git a/scripts/parse_kconfig/symlist.h b/scripts/parse_kconfig/symlist.h index 7d24bd1..85f473e 100644 --- a/scripts/parse_kconfig/symlist.h +++ b/scripts/parse_kconfig/symlist.h @@ -4,12 +4,12 @@ #include #include -#include "cnfbuild.h" -#include "output.h" - #ifndef _SYMLIST_H_ #define _SYMLIST_H_ +#include "cnfbuild.h" +#include "output.h" + struct symlist_el { char *name; bool prompt; @@ -31,7 +31,6 @@ void symlist_closesym(struct symlist *sl); unsigned symlist_adddummy(struct symlist *sl); struct symlist_el *symlist_find(struct symlist *sl, char *name); size_t symlist_id(struct symlist *sl, char *name); -void symlist_print(struct symlist *sl); void symlist_free(struct symlist *sl); #endif /* _SYMLIST_H_ */ -- cgit v1.2.3