ERR: Removed ftime ambiguity created by poor C++ standard headers provided by Borland 5.5.

This commit is contained in:
Brad King 2003-12-29 13:14:26 -05:00
parent 2f2596c213
commit 242f4f2fc8

View File

@ -144,7 +144,7 @@ SystemTools::GetTime(void)
{ {
#if defined(HAVE_FTIME) #if defined(HAVE_FTIME)
struct TIMEB t; struct TIMEB t;
FTIME(&t); ::FTIME(&t);
return (double)t.time + (double)t.millitm * (double)0.001; return (double)t.time + (double)t.millitm * (double)0.001;
#else /* !HAVE_FTIME */ #else /* !HAVE_FTIME */
time_t secs; time_t secs;