// The -*- C++ -*- math functions header.
// This file is part of the GNU ANSI C++ Library.
// Modified for use with LyX.

#ifndef __CMATH__
#define __CMATH__

#include <math.h>

namespace std {
	inline float  abs (float  x) { return fabs (x); }
	inline double abs (double x) { return fabs (x); }
}

#endif
