summaryrefslogtreecommitdiff
path: root/regress/gnu/egcs/gcc-bounds/memcpy-2.c
blob: f1fe1813dea996bc578cd4fa6489c1cbd97b196e (plain)
1
2
3
4
5
6
7
8
#include <string.h>

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