blob: 6d3408a4e521233713d3a89393f71dc01c2a5c57 [file] [log] [blame]
#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;
}