Updated PCI IDs to latest snapshot.
[tangerine.git] / workbench / libs / mathieeedoubbas / mathieeedoubbas_init.c
blobaddab8ce039c0ed330ebdc9d089a91a189fc571c
1 /*
2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Init of mathieeedoubbas.library
6 Lang: english
7 */
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
15 #define DEBUG 0
16 #include <aros/debug.h>
17 #undef kprintf
19 /* */
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);
35 return TRUE;
36 } /* L_InitLib */
38 ADD2INITLIB(IEEEDP_Init, 0)