Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#include "memcpy.h"
extern "C" void * memcpy(void * __restrict dst, const void * __restrict src, size_t size)
{
return inline_memcpy(dst, src, size);
}