Commit 9cb87aaf404110822200ca1e508471f8f083d1de
Exists in
smarc-imx_3.14.28_1.0.0_ga
and in
1 other branch
Merge branches 'x86-boot-for-linus' and 'x86-cleanups-for-linus' of git://git.ke…
…rnel.org/pub/scm/linux/kernel/git/tip/tip Pull tiny x86 boot cleanups from Ingo Molnar. * 'x86-boot-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/boot: Fix a sanity check in printf.c * 'x86-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86, boot: Fix warning due to undeclared strlen()
Showing 2 changed files Side-by-side Diff
arch/x86/boot/boot.h
... | ... | @@ -355,6 +355,7 @@ |
355 | 355 | size_t strnlen(const char *s, size_t maxlen); |
356 | 356 | unsigned int atou(const char *s); |
357 | 357 | unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base); |
358 | +size_t strlen(const char *s); | |
358 | 359 | |
359 | 360 | /* tty.c */ |
360 | 361 | void puts(const char *); |