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

efi/libstub: Fix missing-prototype warning for skip_spaces()

Include <linux/string.h> into skip_spaces.c to silence a compiler
warning about a missing prototype.

Signed-off-by: Ard Biesheuvel <ardb@kernel.org>

+1
+1
drivers/firmware/efi/libstub/skip_spaces.c
··· 1 1 // SPDX-License-Identifier: GPL-2.0 2 2 3 3 #include <linux/ctype.h> 4 + #include <linux/string.h> 4 5 #include <linux/types.h> 5 6 6 7 char *skip_spaces(const char *str)