From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-Id: <200510290047.j9T0l8UZ030067@shell0.pdx.osdl.net> To: paulus@samba.org From: akpm@osdl.org Date: Fri, 28 Oct 2005 17:46:37 -0700 Cc: akpm@osdl.org, linuxppc-dev@ozlabs.org, olh@suse.de, linuxppc64-dev@ozlabs.org Subject: [patch 24/43] ppc64 boot: missing include for size_t List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Olaf Hering 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 Cc: Paul Mackerras Signed-off-by: Andrew Morton --- arch/ppc64/boot/string.h | 1 + 1 files changed, 1 insertion(+) diff -puN arch/ppc64/boot/string.h~ppc64-boot-missing-include-for-size_t arch/ppc64/boot/string.h --- devel/arch/ppc64/boot/string.h~ppc64-boot-missing-include-for-size_t 2005-10-28 17:44:04.000000000 -0700 +++ devel-akpm/arch/ppc64/boot/string.h 2005-10-28 17:44:04.000000000 -0700 @@ -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); _