blob: f8ad926c670563c2707c943ec09a35e4455206a0 [file] [log] [blame]
/* ---------------------------------------------------------------- */
/* Copyright 1998 (c) by RWTH Aachen - Lehrstuhl fuer Informatik VI */
/* Franz Josef Och */
/* ---------------------------------------------------------------- */
#ifndef HEADER_MYMATH_DEFINED
#define HEADER_MYMATH_DEFINED
inline double mfabs(double x){return (x<0)?(-x):x;}
#include <math.h>
#endif