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
revert between 56095 -> 55830 in arch
[AROS.git]
/
arch
/
all-android
/
bootstrap
/
runtime.c
blob
88838eaade4c38ce9b9dd13a397092f96a7f1a07
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <android/log.h>
7
#include <stdarg.h>
8
#include <stdio.h>
9
10
#include <runtime.h>
11
12
void
kprintf
(
const char
*
fmt
, ...)
13
{
14
va_list
args
;
15
16
va_start
(
args
,
fmt
);
17
__android_log_vprint
(
ANDROID_LOG_DEBUG
,
"AROS"
,
fmt
,
args
);
18
va_end
(
args
);
19
}