summaryrefslogtreecommitdiff
path: root/src/forms_timer.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2003-09-03 19:58:08 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2003-09-03 19:58:08 +0000
commit8bfa7d85795756bf01713a5ad5a63356df38cf83 (patch)
treec8e8ca4512cc1e6b28fc96c8bff690e9a8ad815a /src/forms_timer.cxx
parentcd807ffcdf550532b4f6f055402f72c9ed29b873 (diff)
Need <time.h> on IRIX (STR #157)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3089 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/forms_timer.cxx')
-rw-r--r--src/forms_timer.cxx19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/forms_timer.cxx b/src/forms_timer.cxx
index 925a55df9..126a42ef1 100644
--- a/src/forms_timer.cxx
+++ b/src/forms_timer.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: forms_timer.cxx,v 1.4.2.3.2.4 2003/01/30 21:44:31 easysw Exp $"
+// "$Id: forms_timer.cxx,v 1.4.2.3.2.5 2003/09/03 19:58:08 easysw Exp $"
//
// Forms timer object for the Fast Light Tool Kit (FLTK).
//
@@ -31,14 +31,15 @@
#include <FL/Fl_Timer.H>
#include <FL/fl_draw.H>
#ifdef WIN32
-# ifdef __MWERKS__
-# include <time.h>
-# else
-# include <sys/types.h>
-# include <sys/timeb.h>
-# endif
+# ifdef __MWERKS__
+# include <time.h>
+# else
+# include <sys/types.h>
+# include <sys/timeb.h>
+# endif
#else
-# include <sys/time.h>
+# include <time.h>
+# include <sys/time.h>
#endif
#include <stdio.h>
@@ -161,5 +162,5 @@ void Fl_Timer::suspended(char d) {
}
//
-// End of "$Id: forms_timer.cxx,v 1.4.2.3.2.4 2003/01/30 21:44:31 easysw Exp $".
+// End of "$Id: forms_timer.cxx,v 1.4.2.3.2.5 2003/09/03 19:58:08 easysw Exp $".
//