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

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