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
Expand PMF_FN_* macros.
[netbsd-mini2440.git]
/
sys
/
arch
/
pmax
/
test
/
t03.c
blob
c54660bbca1fb5d1173029e0f450da7f0f9763b8
1
char
hello
[] =
"hello
\n
"
;
2
3
main
(
argc
,
argv
)
4
char
**
argv
;
5
{
6
int
fd
=
open
(
"/dev/console"
,
1
);
7
8
hello
[
0
] =
'H'
;
9
if
(
fd
>=
0
)
10
write
(
fd
,
hello
,
6
);
11
return
(
0
);
12
}