OpenBSD-4.6/regress/gnu/egcs/gcc-bounds/memcpy-3.c

Compare this file to the similar file:
Show the results in this format:

#include <string.h>

int main(int argc, char **argv) {
	char buf[4];
	char buf2[8] = "1234567";
	memcpy(buf, buf2, sizeof buf2);
	return 1;
}