]> git.mxchange.org Git - simgear.git/blobdiff - Misc/stopwatch.hxx
Cygnus tools compatibility tweaks.
[simgear.git] / Misc / stopwatch.hxx
index e4034ac88f8a4c12233bc476ea4b1923f55fe40a..d3bcfade467064d311838940f8651c840710013d 100644 (file)
@@ -25,6 +25,9 @@
  *
  ***************************************************************************
  * $Log$
+ * Revision 1.3  1998/11/20 01:01:03  curt
+ * FreeBSD support.
+ *
  * Revision 1.2  1998/11/02 18:28:31  curt
  * Additional win32 support.
  *
 #endif // WIN32
 
 #if defined( HAVE_GETRUSAGE )
+#  if defined( __FreeBSD__ )
+#    include <sys/types.h>
+#  endif 
+#  include <sys/time.h>
 #  include <sys/resource.h>
+#  include <unistd.h>
 #elif defined( WIN32 )
 #  include <windows.h>
 #else