repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git]
/
workbench
/
prefs
/
input
/
misc.c
blob
8965298e17f841371de6fccde695474c3ad93549
1
/*
2
Copyright © 2003, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <exec/types.h>
7
#include <proto/dos.h>
8
9
void
ShowError
(
CONST_STRPTR message
)
10
{
11
Printf
(
"ERROR: %s
\n
"
,
message
);
12
}