Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / alib / asmfreepooled.c
blob43f8ed304c2cdb0bfb2693a40f3a34500ce6d7a7
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(void, AsmFreePooled,
20 /* SYNOPSIS */
21 AROS_UFHA(APTR, poolHeader, A0),
22 AROS_UFHA(APTR, Memory , A1),
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
47 FreePooled(poolHeader,Memory,MemSize);
48 AROS_USERFUNC_EXIT
49 } /* AsmFreePooled */