2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: Simply call the exec function
9 #define AROS_TAGRETURNTYPE APTR
11 #include "alib_intern.h"
13 /*****************************************************************************
16 #define NO_INLINE_STDARG /* turn off inline def */
17 #include <proto/exec.h>
19 AROS_UFH3(APTR
, AsmAllocPooled
,
22 AROS_UFHA(APTR
, poolHeader
, A0
),
23 AROS_UFHA(ULONG
, memSize
, D0
),
24 AROS_UFHA(struct ExecBase
*, SysBase
, A6
))
44 *****************************************************************************/
48 return AllocPooled(poolHeader
,memSize
);
52 } /* AsmAllocPooled */