2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
5 Desc: Initialize a list
9 #include <exec/lists.h>
11 /*****************************************************************************
14 #include <proto/exec.h>
16 AROS_LH1I(void, NewMinList
,
19 AROS_LHA(struct MinList
*, list
, A0
),
22 struct ExecBase
*, SysBase
, 138, Exec
)
25 Initialize a list. After that, you can use functions like
26 AddHead(), AddTail() and Insert() on the list.
29 list - the list to be initialized
42 NEWLIST() macro, libamiga/NewList()
48 ******************************************************************************/
53 * The stupidest thing ever to waste an LVO with...
54 * But some m68k applications (PFS3) already use it if exec.library version >= 45.
55 * I wonder what's the win...