No empty .Rs/.Re
[netbsd-mini2440.git] / regress / lib / libc / ssp / strcat / strcat.c
blob304ce58ecefe1b08c7e7553493b99747f603378c
1 #include <stdio.h>
2 #include <string.h>
4 int
5 main(int argc, char *argv[])
7 char b[10];
8 (void)strcpy(b, "1");
9 (void)strcat(b, argv[1]);
11 (void)printf("%s\n", b);
12 return 0;