1 #ifndef LIBRARIES_MATHLIBRARY_H
    2 #define LIBRARIES_MATHLIBRARY_H
    3 
    4 /*
    5 	mathXXX.library include
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef EXEC_LIBRARIES_H
   11 # include <exec/libraries.h>
   12 #endif
   13 
   14 #pragma pack(2)
   15 
   16 
   17 struct MathIEEEBase
   18 {
   19 	struct Library   MathIEEEBase_LibNode;
   20 	UBYTE            MathIEEEBase_reserved[18];
   21 	LONG           (*MathIEEEBase_TaskOpenLib)(VOID);
   22 	LONG           (*MathIEEEBase_TaskCloseLib)(VOID);
   23 };
   24 
   25 
   26 #pragma pack()
   27 
   28 #endif /* LIBRARIES_MATHLIBRARY_H */