tools/genmodule: Fix error in tests/clib/execl; should also fix gcc
[AROS.git] / rom / kernel / putchar.c
blobf82b65f4d8542c768944475e440acea4381a8f2f
1 #include <aros/kernel.h>
3 #include <kernel_base.h>
4 #include <kernel_debug.h>
6 /*****************************************************************************
8 NAME */
9 #include <proto/kernel.h>
11 AROS_LH1(void, KrnPutChar,
13 /* SYNOPSIS */
14 AROS_LHA(char, c, D0),
16 /* LOCATION */
17 struct KernelBase *, KernelBase, 25, Kernel)
19 /* FUNCTION
20 Output a single character to low-level debug output stream
22 INPUTS
23 c - A character to output
25 RESULT
26 None
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
37 During very early system startup this function can be called
38 directly with KernelBase set to NULL. Architecture-specific
39 implementations of this function need to take care of it.
41 ******************************************************************************/
43 AROS_LIBFUNC_INIT
45 krnPutC(c, KernelBase);
47 AROS_LIBFUNC_EXIT