make libutil compile on wince. no stopwatch on windows ce. r=darin, b=281945

This commit is contained in:
dougt%meer.net 2005-03-07 16:37:43 +00:00
parent 5b1084a5a5
commit 3320514b36

View File

@ -202,6 +202,8 @@ double Stopwatch::GetCPUTime(){
return (double)(cpt.tms_utime+cpt.tms_stime) / gTicks;
#elif defined(R__VMS)
return(double)clock()/gTicks;
#elif defined(WINCE)
return 0;
#elif defined(WIN32)
OSVERSIONINFO OsVersionInfo;