repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
regress
/
lib
/
libc
/
ssp
/
strcpy
/
strcpy.c
blob
f4ac6cc3e35e018184795b41834e720b3b8f3130
1
#include <stdio.h>
2
#include <string.h>
3
4
int
5
main
(
int
argc
,
char
*
argv
[])
6
{
7
char
b
[
10
];
8
(
void
)
strcpy
(
b
,
argv
[
1
]);
9
10
(
void
)
printf
(
"%s
\n
"
,
b
);
11
return
0
;
12
}