2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
8 #include <aros/kernel.h>
9 #include <aros/libcall.h>
14 #include <kernel_base.h>
15 #include <kernel_debug.h>
17 /*****************************************************************************
20 #include <proto/kernel.h>
25 AROS_LHA(const char *, format
, A0
),
26 AROS_LHA(va_list, args
, A1
),
29 struct KernelBase
*, KernelBase
, 12, Kernel
)
32 Output a formatted string to low-level debug output stream.
34 The function supports the same set of formatting specifiers
35 as standard C printf() function.
38 format - A format string
39 args - A list of arguments
42 Number of succesfully printed characters
53 During very early system startup this function can be called
54 directly with KernelBase set to NULL. Architecture-specific
55 implementations of this function need to take care of it.
57 ******************************************************************************/
61 return krnBug(format
, args
, KernelBase
);