xref: /netbsd-src/external/bsd/mdocml/dist/test-strlcpy.c (revision 5dd36a3bc8bf2a9dec29ceb6349550414570c447)
1 #include <string.h>
2 
3 int
4 main(void)
5 {
6 	char buf[2] = "";
7 	return ! (strlcpy(buf, "a", sizeof(buf)) == 1 &&
8 	    buf[0] == 'a' && buf[1] == '\0');
9 }
10