summaryrefslogtreecommitdiff
path: root/math/lp_solve/patches/patch-aa
blob: e4dafe8d214710b1e589db31fcd35daaa08568bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
$NetBSD: patch-aa,v 1.2 2015/12/07 17:40:27 joerg 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(buf.tv_sec + buf.tv_usec * 0.000001);
 #endif
 }