summaryrefslogtreecommitdiff
path: root/arch/x86/boot/string.c
diff options
context:
space:
mode:
authorNicholas Mc Guire <hofrat@osadl.org>2017-01-07 10:38:31 +0100
committerThomas Gleixner <tglx@linutronix.de>2017-01-09 11:53:05 +0100
commitfac69d0efad08fc15e4dbfc116830782acc0dc9a (patch)
tree8ee25b7c9afd2831851a613014f675e5048f5285 /arch/x86/boot/string.c
parenta33d331761bc5dd330499ca5ceceb67f0640a8e6 (diff)
x86/boot: Add missing declaration of string functions
Add the missing declarations of basic string functions to string.h to allow a clean build. Fixes: 5be865661516 ("String-handling functions for the new x86 setup code.") Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org> Link: http://lkml.kernel.org/r/1483781911-21399-1-git-send-email-hofrat@osadl.org Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/boot/string.c')
-rw-r--r--arch/x86/boot/string.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/boot/string.c b/arch/x86/boot/string.c
index cc3bd583dce1..9e240fcba784 100644
--- a/arch/x86/boot/string.c
+++ b/arch/x86/boot/string.c
@@ -14,6 +14,7 @@
#include <linux/types.h>
#include "ctype.h"
+#include "string.h"
int memcmp(const void *s1, const void *s2, size_t len)
{