repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add simple AbortIO to get the host controller offline
[AROS.git]
/
test
/
dos
/
output.c
blob
4c77f643be6c7f650ae051dcf270233d7f81a025
1
#include <proto/dos.h>
2
3
int
main
(
void
)
4
{
5
FPuts
(
Output
(), (
STRPTR
)
"Testing Output() with FPuts
\n
"
);
6
FPrintf
(
Output
(), (
STRPTR
)
"Testing Output with FPrintf
\n
"
);
7
8
return
0
;
9
}