/*============================================================================= Name : fastmath.h Purpose : Definitions for fastmath.c Created 9/9/1997 by gshaw Copyright Relic Entertainment, Inc. All rights reserved. =============================================================================*/ #ifndef ___FASTMATH_H #define ___FASTMATH_H #include "types.h" /*============================================================================= Macros: =============================================================================*/ #define fsqrt fmathSqrt /*============================================================================= Functions: =============================================================================*/ real32 fmathSqrt(real32 num); #endif