2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
5 Desc: Init of mathieeedoubbas.library
8 #include <utility/utility.h> /* this must be before mathieeedoubbas_intern.h */
10 #include <aros/symbolsets.h>
12 #include "mathieeedoubbas_intern.h"
13 #include LC_LIBDEFS_FILE
16 #include <aros/debug.h>
20 #define SetFunc(a,b) SetFunction((struct Library *)lh, a * -LIB_VECTSIZE, AROS_SLIB_ENTRY(b,MathIeeeDoubBas))
22 extern QUAD
MathIeeeDoubBas_FPU_IEEEDPFix();
23 extern QUAD
MathIeeeDoubBas_FPU_IEEEDPFlt();
24 extern QUAD
MathIeeeDoubBas_FPU_IEEEDPMul();
25 extern QUAD
MathIeeeDoubBas_FPU_IEEEDPDiv();
27 static int IEEEDP_Init(LIBBASETYPEPTR lh
)
30 SetFunc( 6, FPU_IEEEDPFlt);
32 SetFunc(13, FPU_IEEEDPMul
);
33 SetFunc(14, FPU_IEEEDPDiv
);
38 ADD2INITLIB(IEEEDP_Init
, 0)