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

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