aboutsummaryrefslogtreecommitdiff
path: root/scripts/write_config/solution.h
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-04-17 09:54:55 +0200
committerKarel Kočí <cynerd@email.cz>2015-04-17 09:54:55 +0200
commitb81979aaea68da39fdf41bd82469f4d6b8201827 (patch)
treeda9f21d865c31fc6a0139bf57bb63f6ec601296f /scripts/write_config/solution.h
parent1c910efc793d22a0aa269fa5314474d69a6212af (diff)
downloadlinux-conf-perf-b81979aaea68da39fdf41bd82469f4d6b8201827.tar.gz
linux-conf-perf-b81979aaea68da39fdf41bd82469f4d6b8201827.tar.bz2
linux-conf-perf-b81979aaea68da39fdf41bd82469f4d6b8201827.zip
write_config implemented solution reader, but most of code in write.c is now commented
Diffstat (limited to 'scripts/write_config/solution.h')
-rw-r--r--scripts/write_config/solution.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/write_config/solution.h b/scripts/write_config/solution.h
new file mode 100644
index 0000000..fb1ebed
--- /dev/null
+++ b/scripts/write_config/solution.h
@@ -0,0 +1,13 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <stdbool.h>
+#include <kconfig/lkc.h>
+#include <build_files.h>
+#include "symlist.h"
+
+#ifndef _SOLUTION_H_
+#define _SOLUTION_H_
+
+void solution_set(struct symlist *sl, FILE * f);
+
+#endif /* _SOLUTION_H_ */