From: Masahiro Yamada Date: Sun, 3 Dec 2023 10:25:26 +0000 (+0900) Subject: kconfig: add include guard to lkc_proto.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=405d2cb209b5836910b5dac01cf97fcbd186c0af;p=linux.git kconfig: add include guard to lkc_proto.h Signed-off-by: Masahiro Yamada --- diff --git a/scripts/kconfig/lkc_proto.h b/scripts/kconfig/lkc_proto.h index edd1e617b25c5..687d8698d801c 100644 --- a/scripts/kconfig/lkc_proto.h +++ b/scripts/kconfig/lkc_proto.h @@ -1,4 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 */ +#ifndef LKC_PROTO_H +#define LKC_PROTO_H + #include /* confdata.c */ @@ -50,3 +53,5 @@ char *expand_one_token(const char **str); /* expr.c */ void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken); + +#endif /* LKC_PROTO_H */