diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e9dce905d9..f2ca29c9fa 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-11-04 02:12 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/rtl/seconds.c + + added #include to OpenWatcom OS2 builds. + 2008-11-04 02:08 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/vm/thread.c * removed casting to void* thread startup function passed diff --git a/harbour/source/rtl/seconds.c b/harbour/source/rtl/seconds.c index 75414452b2..e0126afca2 100644 --- a/harbour/source/rtl/seconds.c +++ b/harbour/source/rtl/seconds.c @@ -78,6 +78,9 @@ #if defined( HB_OS_OS2 ) #define BUFSIZE 16 * 1024 #include + #if defined( __WATCOMC__ ) + #include + #endif #endif HB_EXPORT void hb_dateTimeStamp( LONG * plJulian, LONG * plMilliSec )