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]
/
sys
/
arch
/
pmax
/
test
/
t02.c
blob
8f66f5706b7ebee428c7b35e962029a33461133c
1
main
(
argc
,
argv
)
2
int
argc
;
3
char
**
argv
;
4
{
5
register
int
i
;
6
int
fd
=
open
(
"/dev/console"
,
1
);
7
8
for
(
i
=
0
;
i
<
argc
;
i
++) {
9
write
(
fd
,
argv
[
i
],
strlen
(
argv
[
i
]));
10
write
(
fd
,
"
\n
"
,
1
);
11
}
12
return
(
0
);
13
}