mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
3c8aba3b55
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@712 a592a061-630c-0410-9148-cb99ea01b6c8
20 lines
357 B
C++
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
|