Skip to content
Snippets Groups Projects
Commit 2b2bf52e authored by Brad King's avatar Brad King
Browse files

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

parent a5b766fe
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ SystemTools::GetTime(void)
{
#if defined(HAVE_FTIME)
struct TIMEB t;
FTIME(&t);
::FTIME(&t);
return (double)t.time + (double)t.millitm * (double)0.001;
#else /* !HAVE_FTIME */
time_t secs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment