aboutsummaryrefslogtreecommitdiff
path: root/scripts/parse_kconfig/symlist.h
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-04-12 14:03:15 +0200
committerKarel Kočí <cynerd@email.cz>2015-04-12 14:03:15 +0200
commita4c50582e56322c58bf4d9e58ca04193df95ac94 (patch)
tree819dcdfd9c2249c53949a7d26017ac13653192db /scripts/parse_kconfig/symlist.h
parent522337b2104373a911d15e1abd86ab71ec6e6690 (diff)
downloadlinux-conf-perf-a4c50582e56322c58bf4d9e58ca04193df95ac94.tar.gz
linux-conf-perf-a4c50582e56322c58bf4d9e58ca04193df95ac94.tar.bz2
linux-conf-perf-a4c50582e56322c58bf4d9e58ca04193df95ac94.zip
parse_kconfig symlist.h move includes to begining of file
Diffstat (limited to 'scripts/parse_kconfig/symlist.h')
-rw-r--r--scripts/parse_kconfig/symlist.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/parse_kconfig/symlist.h b/scripts/parse_kconfig/symlist.h
index 88bf4b0..801624c 100644
--- a/scripts/parse_kconfig/symlist.h
+++ b/scripts/parse_kconfig/symlist.h
@@ -1,10 +1,10 @@
-#ifndef _SYMLIST_H_
-#define _SYMLIST_H_
-
#include <stdbool.h>
#include <string.h>
#include "cnfexpr.h"
+#ifndef _SYMLIST_H_
+#define _SYMLIST_H_
+
struct symlist_el {
unsigned int id;
char *name;