aboutsummaryrefslogtreecommitdiff
path: root/scripts/parse_kconfig/symlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/parse_kconfig/symlist.h')
-rw-r--r--scripts/parse_kconfig/symlist.h7
1 files changed, 3 insertions, 4 deletions
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 <string.h>
#include <search.h>
-#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_ */