Index: benchmark/io/http/protocol.cfa
===================================================================
--- benchmark/io/http/protocol.cfa	(revision 857a1c6a4dd8ee60c80b5150cef3cc8cc5ff7685)
+++ benchmark/io/http/protocol.cfa	(revision c8a02103529bbac3a87ecc27896ddaea00e4e292)
@@ -249,5 +249,5 @@
 
 		char buff[100];
-		Time now = getTimeNsec();
+		Time now = timeNsec();
 		strftime( buff, 100, "%a, %d %b %Y %H:%M:%S %Z", now );
 		sout | "Updated date to '" | buff | "'";
Index: benchmark/io/readv-posix.c
===================================================================
--- benchmark/io/readv-posix.c	(revision 857a1c6a4dd8ee60c80b5150cef3cc8cc5ff7685)
+++ benchmark/io/readv-posix.c	(revision c8a02103529bbac3a87ecc27896ddaea00e4e292)
@@ -111,5 +111,5 @@
 				printf("Starting\n");
 				bool is_tty = isatty(STDOUT_FILENO);
-				start = getTimeNsec();
+				start = timeNsec();
 				run = true;
 
@@ -118,5 +118,5 @@
 
 				run = false;
-				end = getTimeNsec();
+				end = timeNsec();
 				printf("\nDone\n");
 
Index: benchmark/io/readv.cfa
===================================================================
--- benchmark/io/readv.cfa	(revision 857a1c6a4dd8ee60c80b5150cef3cc8cc5ff7685)
+++ benchmark/io/readv.cfa	(revision c8a02103529bbac3a87ecc27896ddaea00e4e292)
@@ -147,5 +147,5 @@
 				printf("Starting\n");
 				bool is_tty = isatty(STDOUT_FILENO);
-				start = getTimeNsec();
+				start = timeNsec();
 				run = true;
 
@@ -156,5 +156,5 @@
 
 				run = false;
-				end = getTimeNsec();
+				end = timeNsec();
 				printf("\nDone\n");
 			}
