Added support for compiling C++ files. It isn't included for all
[AROS.git] / arch / all-mingw32 / kernel / putchar.c
blob19caa67503509565d0b8a7be5d05f95bb2c29c2b
1 #include <proto/exec.h>
3 #include "kernel_base.h"
5 AROS_LH1(void, KrnPutChar,
6 AROS_LHA(char, c, D0),
7 struct KernelBase *, KernelBase, 25, Kernel)
9 AROS_LIBFUNC_INIT
11 Forbid();
12 KernelIFace.core_putc(c);
13 Permit();
15 AROS_LIBFUNC_EXIT