2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
5 Desc: Init of mathieeesingtrans.library
9 #include <aros/symbolsets.h>
11 #include "mathieeesingtrans_intern.h"
12 #include LC_LIBDEFS_FILE
15 #include <aros/debug.h>
18 struct Library
* MathIeeeSingBasBase
;
20 static int Init(LIBBASETYPEPTR LIBBASE
)
22 MathIeeeSingBasBase
= OpenLibrary ("mathieeesingbas.library", 39);
23 if (!MathIeeeSingBasBase
)
30 static int Expunge(LIBBASETYPEPTR LIBBASE
)
32 if (MathIeeeSingBasBase
)
33 CloseLibrary ((struct Library
*)MathIeeeSingBasBase
);
39 ADD2EXPUNGELIB(Expunge
, 0);