diff options
Diffstat (limited to 'newlib/libc/machine/spu/memcpy.c')
-rw-r--r-- | newlib/libc/machine/spu/memcpy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/machine/spu/memcpy.c b/newlib/libc/machine/spu/memcpy.c index 6f5552685..2ef1711dd 100644 --- a/newlib/libc/machine/spu/memcpy.c +++ b/newlib/libc/machine/spu/memcpy.c @@ -30,6 +30,8 @@ POSSIBILITY OF SUCH DAMAGE. Author: Andreas Neukoetter (ti95neuk@de.ibm.com) */ +#include <string.h> + void * memcpy (void *dst, const void *src, size_t len) { /* TODO: copying byte by byte is far to inefficient */ |