Removed obsolete (and apparently unneeded) AM_C_PROTOTYPES line, which
[AROS.git] / compiler / alib / asmcreatepool.c
blob1a22caa33feea611fc3e8a2d4e5d6c4e5d5e2ddb
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 */
8 #define AROS_TAGRETURNTYPE APTR
10 #include "alib_intern.h"
12 /*****************************************************************************
14 NAME */
15 #define NO_INLINE_STDARG /* turn off inline def */
16 #include <proto/exec.h>
18 AROS_UFH4(APTR, AsmCreatePool,
20 /* SYNOPSIS */
21 AROS_UFHA(ULONG, MemFlags , D0),
22 AROS_UFHA(ULONG, PuddleSize , D1),
23 AROS_UFHA(ULONG, ThreshSize , D2),
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
47 return CreatePool(MemFlags, PuddleSize, ThreshSize);
48 AROS_USERFUNC_EXIT
49 } /* AsmCreatePool */