Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: add include guard to lkc_proto.h

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+5
+5
scripts/kconfig/lkc_proto.h
··· 1 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 + #ifndef LKC_PROTO_H 3 + #define LKC_PROTO_H 4 + 2 5 #include <stdarg.h> 3 6 4 7 /* confdata.c */ ··· 53 50 54 51 /* expr.c */ 55 52 void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken); 53 + 54 + #endif /* LKC_PROTO_H */