diff --git a/rtl/aros/i386/execf.inc b/rtl/aros/i386/execf.inc index 7913c9502d..0a15874015 100644 --- a/rtl/aros/i386/execf.inc +++ b/rtl/aros/i386/execf.inc @@ -45,6 +45,7 @@ procedure DeletePool(poolHeader: Pointer); syscall LocalExecBase 117; function AllocPooled(poolHeader: Pointer; memSize: Cardinal): Pointer; syscall LocalExecBase 118; function FreePooled(poolHeader: Pointer; memory: Pointer; memSize: Cardinal): Pointer; syscall LocalExecBase 119; procedure StackSwap(NewStack: PStackSwapStruct); syscall AOS_ExecBase 122; +procedure RawPutChar(c: Char); syscall AOS_ExecBase 86; //function RawDoFmt(const formatString : pCHAR;const dataStream : POINTER; putChProc : tPROCEDURE; putChData : POINTER): pointer; function RawDoFmt(const formatString : pCHAR;const dataStream : POINTER; putChProc : POINTER; putChData : POINTER): pointer; syscall LocalExecBase 87; diff --git a/rtl/aros/system.pp b/rtl/aros/system.pp index 7e0f708514..74fd67cc75 100644 --- a/rtl/aros/system.pp +++ b/rtl/aros/system.pp @@ -28,6 +28,7 @@ interface {$define DISABLE_NO_THREAD_MANAGER} {$I systemh.inc} +{$I osdebugh.inc} const LineEnding = #10; @@ -83,6 +84,7 @@ procedure Debugln(s: string); implementation {$I system.inc} +{$I osdebug.inc} type PWBArg = ^TWBArg; TWBArg = record