On Mon, Nov 23, 2020 at 6:45 PM Boris Kolpackov <boris@xxxxxxxxxxxxxxxxx> wrote: > > - Add missing includes. > - Remove no longer necessary includes. > --- Applied to linux-kbuild. Thanks. > v2: Don't re-arrange includes. > > scripts/kconfig/conf.c | 1 - > scripts/kconfig/confdata.c | 1 + > scripts/kconfig/lexer.l | 1 - > scripts/kconfig/symbol.c | 2 +- > 4 files changed, 2 insertions(+), 3 deletions(-) > > diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c > index f6e548b..db03e2f 100644 > --- a/scripts/kconfig/conf.c > +++ b/scripts/kconfig/conf.c > @@ -11,7 +11,6 @@ > #include <time.h> > #include <unistd.h> > #include <getopt.h> > -#include <sys/stat.h> > #include <sys/time.h> > #include <errno.h> > > diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c > index a39d93e..2568dbe 100644 > --- a/scripts/kconfig/confdata.c > +++ b/scripts/kconfig/confdata.c > @@ -5,6 +5,7 @@ > > #include <sys/mman.h> > #include <sys/stat.h> > +#include <sys/types.h> > #include <ctype.h> > #include <errno.h> > #include <fcntl.h> > diff --git a/scripts/kconfig/lexer.l b/scripts/kconfig/lexer.l > index 240109f..9c22cb5 100644 > --- a/scripts/kconfig/lexer.l > +++ b/scripts/kconfig/lexer.l > @@ -12,7 +12,6 @@ > #include <stdio.h> > #include <stdlib.h> > #include <string.h> > -#include <unistd.h> > > #include "lkc.h" > #include "parser.tab.h" > diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c > index ffa3ec6..fe38e6f 100644 > --- a/scripts/kconfig/symbol.c > +++ b/scripts/kconfig/symbol.c > @@ -3,11 +3,11 @@ > * Copyright (C) 2002 Roman Zippel <zippel@xxxxxxxxxxxxxx> > */ > > +#include <sys/types.h> > #include <ctype.h> > #include <stdlib.h> > #include <string.h> > #include <regex.h> > -#include <sys/utsname.h> > > #include "lkc.h" > > -- > 2.29.0 > -- Best Regards Masahiro Yamada