diff options
author | David Robillard <d@drobilla.net> | 2019-01-13 13:59:29 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-01-13 13:59:29 +0100 |
commit | 162d540a7a78bcd75aea002b4afa101133315e8b (patch) | |
tree | f59f5adbc21f4156a1a8b4e33abe9124a6f526cb /utils/lv2bench.c | |
parent | 4b4c1797d93e6efb93b12df21c1cd9f04341b61e (diff) | |
download | lilv-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/lv2bench.c')
-rw-r--r-- | utils/lv2bench.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/utils/lv2bench.c b/utils/lv2bench.c index e3eb57f..bbe8818 100644 --- a/utils/lv2bench.c +++ b/utils/lv2bench.c @@ -16,18 +16,23 @@ #define _POSIX_C_SOURCE 200809L -#include <math.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> - #include "lilv/lilv.h" #include "lv2/lv2plug.in/ns/ext/atom/atom.h" +#include "lv2/lv2plug.in/ns/ext/urid/urid.h" +#include "lv2/lv2plug.in/ns/lv2core/lv2.h" -#include "lilv_config.h" #include "bench.h" +#include "lilv_config.h" #include "uri_table.h" +#include <math.h> +#include <stdbool.h> +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <time.h> + static LilvNode* atom_AtomPort = NULL; static LilvNode* atom_Sequence = NULL; static LilvNode* lv2_AudioPort = NULL; |