]> git.lyx.org Git - lyx.git/blob - src/cheaders/cmath
fix typo that put too many include paths for most people
[lyx.git] / src / cheaders / cmath
1 // The -*- C++ -*- math functions header.
2 // This file is part of the GNU ANSI C++ Library.
3 // Modified for use with LyX.
4
5 #ifndef __CMATH__
6 #define __CMATH__
7
8 #include <math.h>
9
10 #ifdef __GNUG__
11 #pragma interface "cmath"
12 #endif
13
14 namespace std {
15         inline float  abs (float  x) { return fabs (x); }
16         inline double abs (double x) { return fabs (x); }
17 }
18
19 #endif