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
Indentation fix, cleanup.
[AROS.git]
/
arch
/
all-hosted
/
bootstrap
/
runtime.c
blob
892ef4d9f2dbd7f8158383ec6e8a5b66a2a5eaee
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <runtime.h>
7
#include <stdarg.h>
8
#include <stdio.h>
9
10
void
kprintf
(
const char
*
fmt
, ...)
11
{
12
va_list
args
;
13
14
va_start
(
args
,
fmt
);
15
vfprintf
(
stderr
,
fmt
,
args
);
16
va_end
(
args
);
17
}