summaryrefslogtreecommitdiff
path: root/regress/gnu/egcs/gcc-bounds/strlcpy-6.c
blob: 4d027d844e171a289fee5a5a7f765fc3fafd9245 (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(buf2, "foo", sizeof buf);
	return 1;
}