summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-09-03 15:32:59 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-09-03 15:32:59 +0000
commit0196542a090c4f225061553fdfbf234cb9da89ab (patch)
tree7753a74bbd46c73917633775ea0dc5ead6556d0d /FL
parentfaf13cdd7e8e187baa08d7f2011566519278069a (diff)
Fix typo...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2617 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/math.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/math.h b/FL/math.h
index 6a92d7627..192a2321e 100644
--- a/FL/math.h
+++ b/FL/math.h
@@ -1,5 +1,5 @@
//
-// "$Id: math.h,v 1.4.2.4.2.6 2002/09/03 02:25:32 easysw Exp $"
+// "$Id: math.h,v 1.4.2.4.2.7 2002/09/03 15:32:59 easysw Exp $"
//
// Math header file for the Fast Light Tool Kit (FLTK).
//
@@ -46,7 +46,7 @@
# include <float.h>
# endif
-# if (defined(WIN32) || defined(CRAY)) && !define(__MINGW32__) && !defined(__MWERKS__)
+# if (defined(WIN32) || defined(CRAY)) && !defined(__MINGW32__) && !defined(__MWERKS__)
inline double rint(double v) {return floor(v+.5);}
inline double copysign(double a, double b) {return b<0 ? -a : a;}
@@ -57,5 +57,5 @@ inline double copysign(double a, double b) {return b<0 ? -a : a;}
//
-// End of "$Id: math.h,v 1.4.2.4.2.6 2002/09/03 02:25:32 easysw Exp $".
+// End of "$Id: math.h,v 1.4.2.4.2.7 2002/09/03 15:32:59 easysw Exp $".
//