Update Gnulib to the latest git version
[deliverable/binutils-gdb.git] / ld / testsuite / ld-plugin / lto-12c.c
CommitLineData
af55061b
L
1#include <string.h>
2
3extern int value;
4
5void *memcpy(void *dest, const void *src, size_t n)
6{
7 char *d = (char *) dest;
8 const char *s = (const char *) src;
9
10 while (n--)
11 *d++ = *s++;
12
13 value = 1;
14 return dest;
15}
This page took 0.347566 seconds and 4 git commands to generate.