2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
6 #include <android/log.h>
10 #include "bootstrap.h"
16 * On Android additionally to stderr we output the log to Android's
17 * own buffer. This is better than nothing.
18 * Since Android's debug output is line-oriented, we have to accumulate
19 * the text in the buffer.
22 static void flushLog(void)
25 __android_log_write(ANDROID_LOG_DEBUG
, "AROS", buf
);
33 ret
= fputc(chr
, stderr
);
44 if (p
== BUFFER_SIZE
- 1)