diff options
author | Karel Kočí <cynerd@email.cz> | 2015-04-12 14:03:15 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-04-12 14:03:15 +0200 |
commit | a4c50582e56322c58bf4d9e58ca04193df95ac94 (patch) | |
tree | 819dcdfd9c2249c53949a7d26017ac13653192db /scripts | |
parent | 522337b2104373a911d15e1abd86ab71ec6e6690 (diff) | |
download | linux-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')
-rw-r--r-- | scripts/parse_kconfig/symlist.h | 6 |
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; |