repo.or.cz
/
openbios.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move the HFS+ filesystem handler into its own new package /packages/hfsplus-files.
[openbios.git]
/
utils
/
ofclient
/
ofclient.c
blob
94214c6ca6b6b63216769562bcf9235dac4c50d1
1
#include
"of1275.h"
2
3
int
write
(
int
fd
,
char
*
buf
,
int
len
);
4
5
int
main
(
void
)
6
{
7
write
(
1
,
"Hello world!
\n
"
,
13
);
8
return
0
;
9
}