All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.badlogic.gdx.jnigen.resources.scripts.memcpy_wrap.c Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
#ifndef __ANDROID__
#ifdef __linux__
#ifdef __x86_64__

#include 
#include 
#include 

__asm__(".symver memcpy,memcpy@GLIBC_2.2.5");

void *__wrap_memcpy(void * destination, const void * source, size_t num)
{
        return memcpy(destination, source, num);
}

#endif
#endif
#endif




© 2015 - 2024 Weber Informatics LLC | Privacy Policy