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
/
fgets
/
fgets.c
blob
da1fc5675266c9a4f58cc2b0e31401691fe021fe
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
int
5
main
(
int
argc
,
char
*
argv
[])
6
{
7
char
b
[
10
];
8
int
len
=
atoi
(
argv
[
1
]);
9
(
void
)
fgets
(
b
,
len
,
stdin
);
10
(
void
)
printf
(
"%s
\n
"
,
b
);
11
return
0
;
12
}