#ifndef MEMCOPY_H #define MEMCOPY_H /* For some reason memcpy doesn't work as expected in libfxcg so I made a simple replacement here */ void *memcopy(void *dst, const void *src, unsigned int n); #endif