diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lv2apply.c | 5 | ||||
-rw-r--r-- | tools/lv2bench.c | 10 | ||||
-rw-r--r-- | tools/lv2info.c | 10 | ||||
-rw-r--r-- | tools/lv2ls.c | 2 | ||||
-rw-r--r-- | tools/uri_table.h | 2 |
5 files changed, 14 insertions, 15 deletions
diff --git a/tools/lv2apply.c b/tools/lv2apply.c index 4f95b2d..8fd3753 100644 --- a/tools/lv2apply.c +++ b/tools/lv2apply.c @@ -1,9 +1,8 @@ // Copyright 2007-2019 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#include "lilv/lilv.h" - -#include "lv2/core/lv2.h" +#include <lilv/lilv.h> +#include <lv2/core/lv2.h> #include <math.h> #include <sndfile.h> diff --git a/tools/lv2bench.c b/tools/lv2bench.c index d6d164e..b19d376 100644 --- a/tools/lv2bench.c +++ b/tools/lv2bench.c @@ -1,14 +1,14 @@ // Copyright 2012-2019 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#include "lilv/lilv.h" -#include "lv2/atom/atom.h" -#include "lv2/core/lv2.h" -#include "lv2/urid/urid.h" - #include "bench.h" #include "uri_table.h" +#include <lilv/lilv.h> +#include <lv2/atom/atom.h> +#include <lv2/core/lv2.h> +#include <lv2/urid/urid.h> + #include <math.h> #include <stdbool.h> #include <stdint.h> diff --git a/tools/lv2info.c b/tools/lv2info.c index a231e24..b56415e 100644 --- a/tools/lv2info.c +++ b/tools/lv2info.c @@ -1,11 +1,11 @@ // Copyright 2007-2019 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#include "lilv/lilv.h" -#include "lv2/core/lv2.h" -#include "lv2/event/event.h" -#include "lv2/port-groups/port-groups.h" -#include "lv2/presets/presets.h" +#include <lilv/lilv.h> +#include <lv2/core/lv2.h> +#include <lv2/event/event.h> +#include <lv2/port-groups/port-groups.h> +#include <lv2/presets/presets.h> #include <math.h> #include <stdbool.h> diff --git a/tools/lv2ls.c b/tools/lv2ls.c index 9db7c34..27c5ec7 100644 --- a/tools/lv2ls.c +++ b/tools/lv2ls.c @@ -1,7 +1,7 @@ // Copyright 2007-2019 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#include "lilv/lilv.h" +#include <lilv/lilv.h> #include <stdbool.h> #include <stdio.h> diff --git a/tools/uri_table.h b/tools/uri_table.h index e17b02a..9a5a192 100644 --- a/tools/uri_table.h +++ b/tools/uri_table.h @@ -10,7 +10,7 @@ #ifndef URI_TABLE_H #define URI_TABLE_H -#include "lv2/urid/urid.h" +#include <lv2/urid/urid.h> #include <stdlib.h> #include <string.h> |