Commit 05f47b33 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

memcpy: Make fast_memcpy static.

parent a9472d1a
......@@ -153,7 +153,7 @@ __asm__ __volatile__(\
#define MIN_LEN 0x40 /* 64-byte blocks */
#endif
void * fast_memcpy(void * to, const void * from, size_t len)
static void * fast_memcpy(void * to, const void * from, size_t len)
{
void *retval;
size_t i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment