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

int main(int argc, char **argv) {
	char buf[10];
	char *buf2;
	strlcpy(buf, "foo", sizeof buf2);
	return 1;
}