summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-05-26 14:19:20 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-05-26 16:58:40 +0900
commit17d17de0e8891bba2ab509714fc52764eaeafd65 (patch)
treee11462db6cfca72f213016d15d5b0b6ee802b8e7 /include
parent04eb05a8e0456ee00fa7443803283b78337d6515 (diff)
Get rid of redefinition of memcpy on mingw
Diffstat (limited to 'include')
-rw-r--r--include/ruby/internal/memory.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ruby/internal/memory.h b/include/ruby/internal/memory.h
index 5214f2b391..0128a7f748 100644
--- a/include/ruby/internal/memory.h
+++ b/include/ruby/internal/memory.h
@@ -264,6 +264,7 @@ rb_alloc_tmp_buffer2(volatile VALUE *store, long count, size_t elsize)
store, rbimpl_size_mul_or_raise(count, elsize), count);
}
+#ifndef __MINGW32__
RBIMPL_ATTR_NOALIAS()
RBIMPL_ATTR_NONNULL((1))
RBIMPL_ATTR_RETURNS_NONNULL()
@@ -282,5 +283,6 @@ ruby_nonempty_memcpy(void *dest, const void *src, size_t n)
}
#undef memcpy
#define memcpy ruby_nonempty_memcpy
+#endif
#endif /* RBIMPL_MEMORY_H */