Commit 24552d10 authored by Ard Biesheuvel's avatar Ard Biesheuvel
Browse files

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: default avatarArd Biesheuvel <ardb@kernel.org>
parent 29637951
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0

#include <linux/ctype.h>
#include <linux/string.h>
#include <linux/types.h>

char *skip_spaces(const char *str)