Message ID | 20201029155152.2467-2-boris@codesynthesis.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | kconfig: header inclusion cleanups | expand |
On Fri, Oct 30, 2020 at 12:52 AM Boris Kolpackov <boris@codesynthesis.com> wrote: > > Signed-off-by: Boris Kolpackov <boris@codesynthesis.com> > --- > scripts/kconfig/lkc.h | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h > index 8454649..3e2c70e 100644 > --- a/scripts/kconfig/lkc.h > +++ b/scripts/kconfig/lkc.h > @@ -6,6 +6,10 @@ > #ifndef LKC_H > #define LKC_H > > +#include <stdio.h> > +#include <assert.h> > +#include <stdlib.h> > + > #include "expr.h" > > #ifdef __cplusplus > -- > 2.29.0 > Applied to linux-kbuild.
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h index 8454649..3e2c70e 100644 --- a/scripts/kconfig/lkc.h +++ b/scripts/kconfig/lkc.h @@ -6,6 +6,10 @@ #ifndef LKC_H #define LKC_H +#include <stdio.h> +#include <assert.h> +#include <stdlib.h> + #include "expr.h" #ifdef __cplusplus
Signed-off-by: Boris Kolpackov <boris@codesynthesis.com> --- scripts/kconfig/lkc.h | 4 ++++ 1 file changed, 4 insertions(+)