summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-14 00:26:17 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-14 00:26:17 -0800
commitdafd433b61f9f1df7a4294a8b0a86ddc66d7d3f4 (patch)
treee94550115f79b0329b08f8266541d67381d48483 /src
parentb1b4053ccc899fe0b79ffda8f0a282755c94983a (diff)
Use time.h, not sys/time.h.
Diffstat (limited to 'src')
-rw-r--r--src/bench.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bench.h b/src/bench.h
index 9f7f5fc..13d8aa4 100644
--- a/src/bench.h
+++ b/src/bench.h
@@ -1,7 +1,7 @@
#ifndef __BENCH_H__
#define __BENCH_H__
#include <stdio.h>
-#include <sys/time.h>
+#include <time.h>
#ifdef TIMER
float _cmark_start_time;