Missing header guards in FL/math.h.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@523 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
gustavo 1999-04-07 14:22:21 +00:00
parent 4a9596d9da
commit 761adb89f5

View File

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