- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / compiler / alib / asmallocpooled.c
blob9bb9a32896599a2b526fc4794ab12639eb9656c3
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Simply call the exec function
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE APTR
11 #include "alib_intern.h"
13 /*****************************************************************************
15 NAME */
16 #define NO_INLINE_STDARG /* turn off inline def */
17 #include <proto/exec.h>
19 AROS_UFH3(APTR, AsmAllocPooled,
21 /* SYNOPSIS */
22 AROS_UFHA(APTR, poolHeader, A0),
23 AROS_UFHA(ULONG, memSize , D0),
24 AROS_UFHA(struct ExecBase *, SysBase, A6))
26 /* FUNCTION
28 INPUTS
30 RESULT
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
40 INTERNALS
42 HISTORY
44 *****************************************************************************/
46 AROS_USERFUNC_INIT
48 return AllocPooled(poolHeader,memSize);
50 AROS_USERFUNC_EXIT
52 } /* AsmAllocPooled */