Copyright clean-up (part 1):
[AROS.git] / arch / all-mingw32 / kernel / putchar.c
blob507791a305c08c3b1f145efed77408dc65be951b
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <proto/exec.h>
8 #include "kernel_base.h"
10 AROS_LH1(void, KrnPutChar,
11 AROS_LHA(char, c, D0),
12 struct KernelBase *, KernelBase, 25, Kernel)
14 AROS_LIBFUNC_INIT
16 Forbid();
17 KernelIFace.core_putc(c);
18 Permit();
20 AROS_LIBFUNC_EXIT