From: Olaf Hering Date: Sat, 29 Oct 2005 00:46:37 +0000 (-0700) Subject: [PATCH] ppc64 boot: missing include for size_t X-Git-Tag: v2.6.15-rc1~59^2~41 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8afe31c9eb92389f091a40def9650278ca66befd;p=linux-2.6 [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 9289258bcb..9fdff1cc0d 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);