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
let the graph class decide how many entries to use based on our period values.
[AROS.git]
/
arch
/
all-hosted
/
bootstrap
/
ui.c
blob
b396b65069cd04bd6e0885c2cbd99ac2c57aac93
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <stdarg.h>
7
#include <stdio.h>
8
9
void
DisplayError
(
char
*
fmt
, ...)
10
{
11
va_list
args
;
12
13
va_start
(
args
,
fmt
);
14
vprintf
(
fmt
,
args
);
15
va_end
(
args
);
16
17
printf
(
"
\n
"
);
18
}