1 #include <aros/kernel.h>
2 #include <aros/libcall.h>
7 #include <kernel_base.h>
8 #include <kernel_debug.h>
10 /*****************************************************************************
13 #include <proto/kernel.h>
18 AROS_LHA(const char *, format
, A0
),
19 AROS_LHA(va_list, args
, A1
),
22 struct KernelBase
*, KernelBase
, 12, Kernel
)
25 Output a formatted string to low-level debug output stream.
27 The function supports the same set of formatting specifiers
28 as standard C printf() function.
31 format - A format string
32 args - A list of arguments
35 Number of succesfully printed characters
46 During very early system startup this function can be called
47 directly with KernelBase set to NULL. Architecture-specific
48 implementations of this function need to take care of it.
50 ******************************************************************************/
54 return krnBug(format
, args
, KernelBase
);