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
Replaced zero timeouts for WaitForChar() with very long delays, now that
[AROS.git]
/
test
/
dos
/
output.c
blob
c4da57e2cb44094eb765cde2d338c8e4ca14b6d8
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <proto/dos.h>
7
8
int
main
(
void
)
9
{
10
FPuts
(
Output
(), (
STRPTR
)
"Testing Output() with FPuts
\n
"
);
11
FPrintf
(
Output
(), (
STRPTR
)
"Testing Output with FPrintf
\n
"
);
12
13
return
0
;
14
}