diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-14 00:26:17 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-14 00:26:17 -0800 |
commit | dafd433b61f9f1df7a4294a8b0a86ddc66d7d3f4 (patch) | |
tree | e94550115f79b0329b08f8266541d67381d48483 /src | |
parent | b1b4053ccc899fe0b79ffda8f0a282755c94983a (diff) |
Use time.h, not sys/time.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/bench.h | 2 |
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; |