picture.datatype: gi_RastPort should not be directly accessed
[AROS.git] / rom / kernel / kernel_debug.c
bloba0d076ff212b948f3fee4f2381e50ce8af0d0408
1 #include <aros/kernel.h>
3 #include <kernel_base.h>
4 #include <kernel_debug.h>
6 /*
7 * Character output function. All debug output ends up there.
8 * This function needs to be implemented for every supported architecture.
9 * KernelBase is an optional parameter here. During
10 * very early startup it can be NULL.
13 int krnPutC(int chr, struct KernelBase *KernelBase)
15 /* The implementation is architecture-specific */
16 return 1;