Dont need this for 32bit

pull/5015/head
Craig Tiller 9 years ago
parent 41304a703a
commit 22c0decbb6
  1. 2
      src/core/support/wrap_memcpy.c

@ -40,7 +40,9 @@
*/
#ifdef __linux__
#ifdef __x86_64__
__asm__(".symver memcpy,memcpy@GLIBC_2.2.5");
#endif
void *__wrap_memcpy(void *destination, const void *source, size_t num) {
return memcpy(destination, source, num);

Loading…
Cancel
Save