freebsd-skq/test-strlcpy.c
Ulrich Spörlein 211d2d512b Vendor import of mdocml 1.12.1
It is a suite of ISC licensed tools to compile and render mdoc/man pages and
will replace groff for formatting manpages in the base system.

http://mdocml.bsd.lv/
2012-10-18 09:55:16 +00:00

9 lines
100 B
C

#include <string.h>
int
main(int argc, char **argv)
{
strlcpy(argv[0], argv[1], 10);
return 0;
}