cmark

My personal build of CMark ✏️

Commit
dafd433b61f9f1df7a4294a8b0a86ddc66d7d3f4
Parent
b1b4053ccc899fe0b79ffda8f0a282755c94983a
Author
John MacFarlane <jgm@berkeley.edu>
Date

Use time.h, not sys/time.h.

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified src/bench.h 2 1 1
diff --git 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;