diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 49533a0fd7..d50c1c78e0 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -33,6 +33,7 @@ * source/rtl/datec.c * source/rtl/pad.c * source/rtl/transfrm.c + * source/rtl/seconds.c * source/vm/itemapi.c * source/tools/dates2.c * Date related globals all prefixed with hb_date diff --git a/harbour/source/rtl/seconds.c b/harbour/source/rtl/seconds.c index 32cacd733c..13a35ce35b 100644 --- a/harbour/source/rtl/seconds.c +++ b/harbour/source/rtl/seconds.c @@ -42,7 +42,7 @@ #include #endif -double hb_seconds( void ) +double hb_dateSeconds( void ) { #if defined(_MSC_VER) #define timeb _timeb @@ -51,7 +51,7 @@ double hb_seconds( void ) struct timeb tb; struct tm * oTime; - HB_TRACE(HB_TR_DEBUG, ("hb_seconds()")); + HB_TRACE(HB_TR_DEBUG, ("hb_dateSeconds()")); ftime( &tb ); oTime = localtime( &tb.time ); @@ -64,6 +64,6 @@ double hb_seconds( void ) HB_FUNC( SECONDS ) { - hb_retnd( hb_seconds() ); + hb_retnd( hb_dateSeconds() ); }