summaryrefslogtreecommitdiffstats
path: root/utils/bench.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-01-13 13:59:29 +0100
committerDavid Robillard <d@drobilla.net>2019-01-13 13:59:29 +0100
commit162d540a7a78bcd75aea002b4afa101133315e8b (patch)
treef59f5adbc21f4156a1a8b4e33abe9124a6f526cb /utils/bench.h
parent4b4c1797d93e6efb93b12df21c1cd9f04341b61e (diff)
downloadlilv-162d540a7a78bcd75aea002b4afa101133315e8b.tar.gz
lilv-162d540a7a78bcd75aea002b4afa101133315e8b.tar.bz2
lilv-162d540a7a78bcd75aea002b4afa101133315e8b.zip
Clean up includes
Sorts includes from local to global (which catches errors) and fixes missing includes found by the resulting breakage and include-what-you-use.
Diffstat (limited to 'utils/bench.h')
-rw-r--r--utils/bench.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/bench.h b/utils/bench.h
index 83d7853..9006cf5 100644
--- a/utils/bench.h
+++ b/utils/bench.h
@@ -23,8 +23,8 @@
#define _POSIX_C_SOURCE 200809L
-#include <time.h>
#include <sys/time.h>
+#include <time.h>
static inline double
bench_elapsed_s(const struct timespec* start, const struct timespec* end)