1#include <string.h>
2
3int
4main(int argc, char **argv)
5{
6	strlcpy(argv[0], argv[1], 10);
7	return 0;
8}
9