Files
dusklight/libs/JSystem/include/JSystem/J3DU/J3DUD.h
T

20 lines
263 B
C++

#ifndef J3DUD_H
#define J3DUD_H
#include <types.h>
#ifndef __MWERKS__
#include <math.h>
#endif
namespace J3DUD {
inline f32 JMAAbs(f32 x) {
#ifdef __MWERKS__
return __fabsf(x);
#else
return fabsf(x);
#endif
}
} // namespace J3DUD
#endif /* J3DUD_H */