diff options
| author | Zachary Waldowski <zwaldowski@gmail.com> | 2013-11-30 04:09:18 -0500 |
|---|---|---|
| committer | Zachary Waldowski <zwaldowski@gmail.com> | 2013-11-30 04:09:18 -0500 |
| commit | cb719a5c1c2eb391d6a5f5e02484ba4aa990a51b (patch) | |
| tree | 875b0e8ea5e6297d8ff9ce4a4251ca66b5b33119 /include | |
| parent | 21bde92c9abb378f9c456a9d95e6f9b99ef8c920 (diff) | |
| download | platform_external_libffi-cb719a5c1c2eb391d6a5f5e02484ba4aa990a51b.tar.gz platform_external_libffi-cb719a5c1c2eb391d6a5f5e02484ba4aa990a51b.tar.bz2 platform_external_libffi-cb719a5c1c2eb391d6a5f5e02484ba4aa990a51b.zip | |
Darwin/iOS: Fix LLVM 3.3 warning re: memcpy.
Diffstat (limited to 'include')
| -rw-r--r-- | include/ffi_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ffi_common.h b/include/ffi_common.h index 37f5a9e..be10922 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 <string.h> #else # ifndef HAVE_MEMCPY |
