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