include/muimaster/macros.h: get() compiler delint
[AROS.git] / workbench / libs / mathtrans / mathtrans_init.c
blob49bf0e5b5d6d3732ad6de26de2e3035f4d62b536
1 /*
2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Init of mathtrans.library
6 Lang: english
7 */
9 #include <aros/symbolsets.h>
11 #include "mathtrans_intern.h"
12 #include LC_LIBDEFS_FILE
14 #define DEBUG 0
15 #include <aros/debug.h>
16 #undef kprintf
18 struct Library * MathBase;
20 static int Init(LIBBASETYPEPTR LIBBASE)
22 MathBase = OpenLibrary ("mathffp.library", 0);
23 if (!MathBase)
24 return FALSE;
26 return TRUE;
29 static int Expunge(LIBBASETYPEPTR LIBBASE)
31 if (MathBase)
32 CloseLibrary ((struct Library *)MathBase);
34 return TRUE;
37 ADD2INITLIB(Init, 0);
38 ADD2EXPUNGELIB(Expunge, 0);