2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: (Obsolete) Open a library.
8 #include "exec_intern.h"
9 #include <aros/libcall.h>
10 #include <exec/libraries.h>
11 #include <proto/exec.h>
13 /*****************************************************************************
17 AROS_LH1(struct Library
*, OldOpenLibrary
,
20 AROS_LHA(UBYTE
*, libName
, A1
),
23 struct ExecBase
*, SysBase
, 68, Exec
)
26 This is the same function as OpenLibrary(), only that it uses 0 as
27 version number. This function is obsolete. Don't use it.
44 *****************************************************************************/
47 return OpenLibrary(libName
,0);
49 } /* OldOpenLibrary */