2013-09-26 17:14:40 +02:00

30 lines
699 B
Plaintext

$NetBSD: patch-aa,v 1.1.1.1 2010/10/16 15:35:08 wiz Exp $
ftime() is deprecated, use gettimeofday() instead.
--- shared/commonlib.c.orig 2009-02-01 19:31:59.000000000 +0000
+++ shared/commonlib.c
@@ -6,7 +6,7 @@
#elif defined EnhTime
# include <windows.h>
#else
-# include <sys/timeb.h>
+# include <sys/time.h>
#endif
#include <stdlib.h>
@@ -844,10 +844,10 @@ double timeNow(void)
}
return( timeBase + (double) now.QuadPart/(double) freq.QuadPart );
#else
- struct timeb buf;
+ struct timeval buf;
- ftime(&buf);
- return((double)buf.time+((double) buf.millitm)/1000.0);
+ gettimeofday(&buf, NULL);
+ return((double)buf.tv_sec+((double) buf.tv_usec)/1000000.0);
#endif
}