summaryrefslogtreecommitdiff
path: root/FL/math.h
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2003-11-01 01:44:23 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2003-11-01 01:44:23 +0000
commit71d777639207b24bec36310020c09dfb55a5c08e (patch)
treef4b3f2414a0c329ea9814fc71c83ecdc454e8aff /FL/math.h
parente582a3e26b29c7e8a3a25bea843fc1f9f64d3370 (diff)
Fixed some OS/2-specific build problems (STR #185)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3115 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/math.h')
-rw-r--r--FL/math.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/FL/math.h b/FL/math.h
index 82c0c4fb6..dc2e95347 100644
--- a/FL/math.h
+++ b/FL/math.h
@@ -1,5 +1,5 @@
//
-// "$Id: math.h,v 1.4.2.4.2.9 2003/08/02 05:54:43 matthiaswm Exp $"
+// "$Id: math.h,v 1.4.2.4.2.10 2003/11/01 01:44:23 easysw Exp $"
//
// Math header file for the Fast Light Tool Kit (FLTK).
//
@@ -37,6 +37,10 @@
# include <math.h>
# endif
+# ifdef __EMX__
+# include <float.h>
+# endif
+
# ifndef M_PI
# define M_PI 3.14159265358979323846
@@ -51,10 +55,6 @@
# define M_SQRT1_2 0.70710678118654752440
# endif // !M_SQRT2
-# ifdef __EMX__
-# include <float.h>
-# endif
-
# if (defined(WIN32) || defined(CRAY)) && !defined(__MINGW32__) && !defined(__MWERKS__)
inline double rint(double v) {return floor(v+.5);}
@@ -66,5 +66,5 @@ inline double copysign(double a, double b) {return b<0 ? -a : a;}
//
-// End of "$Id: math.h,v 1.4.2.4.2.9 2003/08/02 05:54:43 matthiaswm Exp $".
+// End of "$Id: math.h,v 1.4.2.4.2.10 2003/11/01 01:44:23 easysw Exp $".
//