From: Olaf Hering Date: Sat, 29 Oct 2005 00:46:37 +0000 (-0700) Subject: [PATCH] ppc64 boot: missing include for size_t X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8afe31c9eb92389f091a40def9650278ca66befd;p=mv-sheeva.git [PATCH] ppc64 boot: missing include for size_t string.h needs definition of size_t, but not the one from linux/include Signed-off-by: Olaf Hering Cc: Benjamin Herrenschmidt Cc: Anton Blanchard Signed-off-by: Andrew Morton Signed-off-by: Paul Mackerras --- diff --git a/arch/ppc64/boot/string.h b/arch/ppc64/boot/string.h index 9289258bcbd..9fdff1cc0d7 100644 --- a/arch/ppc64/boot/string.h +++ b/arch/ppc64/boot/string.h @@ -1,5 +1,6 @@ #ifndef _PPC_BOOT_STRING_H_ #define _PPC_BOOT_STRING_H_ +#include extern char *strcpy(char *dest, const char *src); extern char *strncpy(char *dest, const char *src, size_t n);