rt_gccstream/libmudflap/testsuite/libmudflap.c/pass5-frag.c

12 lines
177 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main ()
{
char foo [10];
char bar [10];
bar[4] = 'k'; /* touch memcpy source */
memcpy(foo, bar, 10);
return 0;
}