Sync usage with man page.
[netbsd-mini2440.git] / regress / lib / libc / ssp / strcpy / strcpy.c
blobf4ac6cc3e35e018184795b41834e720b3b8f3130
1 #include <stdio.h>
2 #include <string.h>
4 int
5 main(int argc, char *argv[])
7 char b[10];
8 (void)strcpy(b, argv[1]);
10 (void)printf("%s\n", b);
11 return 0;