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 #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 $". //