lyx_mirror/src/cheaders/cmath
Jean-Marc Lasgouttes 3c8aba3b55 clear()->erase() ; lots of using directives for cxx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@712 a592a061-630c-0410-9148-cb99ea01b6c8
2000-05-04 10:57:00 +00:00

20 lines
357 B
C++

// 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>
#ifdef __GNUG__
#pragma interface "cmath"
#endif
namespace std {
inline float abs (float x) { return fabs (x); }
inline double abs (double x) { return fabs (x); }
}
#endif