2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
6 #include <aros/libcall.h>
10 #include "kernel_base.h"
11 #include "kernel_intern.h"
13 AROS_LH0(int, KrnMayGetChar
,
14 struct KernelBase
*, KernelBase
, 26, Kernel
)
21 ret
= KernelBase
->kb_PlatformData
->iface
->read (STDERR_FILENO
, &c
, 1);
24 return (ret
== 1) ? c
: -1;