summaryrefslogtreecommitdiff
path: root/FL/math.h
diff options
context:
space:
mode:
authorgustavo <gustavo>1999-04-07 14:22:21 +0000
committergustavo <gustavo>1999-04-07 14:22:21 +0000
commit761adb89f5578f0de636a6a74171c513c453d6ec (patch)
treed649eb34c7f0c42841776eb4cfa7a20d2e9ec8ed /FL/math.h
parent4a9596d9dac560e402f8b6aa3fee37e2080d6033 (diff)
Missing header guards in FL/math.h.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@523 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/math.h')
-rw-r--r--FL/math.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/FL/math.h b/FL/math.h
index a4b77f37e..96bb724e8 100644
--- a/FL/math.h
+++ b/FL/math.h
@@ -1,5 +1,5 @@
//
-// "$Id: math.h,v 1.4 1999/01/07 19:17:08 mike Exp $"
+// "$Id: math.h,v 1.4.2.1 1999/04/07 14:22:21 gustavo Exp $"
//
// Math header file for the Fast Light Tool Kit (FLTK).
//
@@ -23,6 +23,9 @@
// Please report all bugs and problems to "fltk-bugs@easysw.com".
//
+#ifndef fl_math_h
+#define fl_math_h
+
#include <math.h>
#ifdef WIN32
@@ -51,6 +54,8 @@ inline double copysign(double a, double b) {return b<0 ? -a : a;}
#endif
+#endif
+
//
-// End of "$Id: math.h,v 1.4 1999/01/07 19:17:08 mike Exp $".
+// End of "$Id: math.h,v 1.4.2.1 1999/04/07 14:22:21 gustavo Exp $".
//