From a0748d264028ef4d300f63163c23aeb110bd9aba Mon Sep 17 00:00:00 2001 From: jmcmullan Date: Fri, 19 Oct 2012 23:33:04 +0000 Subject: [PATCH] includes: Fix compiler error if asmcall.h is included before execbase.h Signed-off-by: Jason S. McMullan git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@45929 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- compiler/arossupport/include/asmcall.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/arossupport/include/asmcall.h b/compiler/arossupport/include/asmcall.h index 4076a85340..1caae43853 100644 --- a/compiler/arossupport/include/asmcall.h +++ b/compiler/arossupport/include/asmcall.h @@ -825,6 +825,8 @@ typedef unsigned int (*ULONG_FUNC)(); /* DOS/CreateProc() entry point definition */ #ifndef AROS_PROCH +struct ExecBase; + #define AROS_PROCH(n, _argptr, _argsize, _SysBase) \ AROS_UFH3(SIPTR, n, \ AROS_UFHA(STRPTR, _argptr, A0), \ -- 2.11.4.GIT