2 Copyright © 2003-2011, The AROS Development Team. All rights reserved.
6 #include <aros/libcall.h>
7 #include <proto/exec.h>
9 #include "exec_intern.h"
10 #include <aros/debug.h>
12 AROS_LH2(APTR
, AllocVecPooled
,
13 AROS_LHA(APTR
, pool
, D0
),
14 AROS_LHA(ULONG
, size
, D1
),
15 struct ExecBase
*, SysBase
, 169, Exec
)
21 if (pool
== NULL
) return NULL
;
24 memory
= AllocPooled(pool
, size
);
34 } /* AllocVecPooled() */