From de52cc859726a8a0e6179040e3d678bd568abcef Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Tue, 17 May 2016 13:07:36 +0200 Subject: [PATCH] Remove inaccurate comment about Unix getticks() function. It's not always based on gettimeofday(); now it mostly uses clock_gettime(). --- unix/unix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/unix.h b/unix/unix.h index 12ab8b1c..0e12d042 100644 --- a/unix/unix.h +++ b/unix/unix.h @@ -74,7 +74,7 @@ typedef uint32_t uint32; /* C99: uint32_t defined in stdint.h */ #define SEL_NL { 10 } /* Simple wraparound timer function */ -unsigned long getticks(void); /* based on gettimeofday(2) */ +unsigned long getticks(void); #define GETTICKCOUNT getticks #define TICKSPERSEC 1000 /* we choose to use milliseconds */ #define CURSORBLINK 450 /* no standard way to set this */