From cb719a5c1c2eb391d6a5f5e02484ba4aa990a51b Mon Sep 17 00:00:00 2001 From: Zachary Waldowski Date: Sat, 30 Nov 2013 04:09:18 -0500 Subject: [PATCH] Darwin/iOS: Fix LLVM 3.3 warning re: memcpy. --- include/ffi_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ffi_common.h b/include/ffi_common.h index 37f5a9e9..be10922e 100644 --- a/include/ffi_common.h +++ b/include/ffi_common.h @@ -48,7 +48,7 @@ char *alloca (); #endif /* Check for the existence of memcpy. */ -#if STDC_HEADERS +#if STDC_HEADERS || HAVE_STRING_H # include #else # ifndef HAVE_MEMCPY