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
Don't use .Xo/.Xc. Fix date format.
[netbsd-mini2440.git]
/
regress
/
lib
/
libc
/
ssp
/
sprintf
/
sprintf.c
blob
bc7cc1173c88cc695007c8a813e879e09a855e2b
1
#include <stdio.h>
2
3
int
4
main
(
int
argc
,
char
*
argv
[])
5
{
6
char
b
[
10
];
7
(
void
)
sprintf
(
b
,
"%s"
,
argv
[
1
]);
8
(
void
)
printf
(
"%s
\n
"
,
b
);
9
return
0
;
10
}