/* $Revision Header *** Header built automatically - do not edit! ***********
 *
 *	(C) Copyright 1992 by Metalworx
 *
 *	Name .....: mathlibs.h
 *	Created ..: Sun 26-Apr-92 14:46
 *	Revision .: 0
 *
 *	Date		Author		Comment
 *	=========	========	====================
 *	26-Apr-92	Mtwx		Created this file!
 *
 * $Revision Header ********************************************************/
 #define REVISION 0

#include <math.h>
#define trunc(x)        ((int)  (x))
#define round(x)        ((int)  ((x) + 0.5))
#if defined(FFP)
#include <mffp.h>
#elif defined(IEEE)
/* #include <libraries/mathlibrary.h> */
#include <mieeedoub.h>
#elif defined(FPU81)
#include <m68881.h>
#endif
