2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
9 #include "../kernel/hostinterface.h"
15 * Our debug output goes to stderr.
16 * bootstrap's file redirection code expects this.
18 static int __aros
KPutC(int chr
)
22 ret
= fputc(chr
, stderr
);
30 * Some helpful functions that link us to the underlying host OS.
31 * Without them we would not be able to estabilish any interaction with it.
33 static struct HostInterface _HostIFace
=
36 HOSTINTERFACE_VERSION
,
39 Host_HostLib_GetPointer
,
40 Host_HostLib_FreeErrorStr
,
45 void *HostIFace
= &_HostIFace
;