diff options
author | David Robillard <d@drobilla.net> | 2024-11-24 13:31:55 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-24 20:04:10 -0500 |
commit | ec3e053611c5a7c1ffe5f0e308610a54b6d4cd92 (patch) | |
tree | a07a35f0bb98f213e67e769227acde9b291e2a78 /tools/lv2info.c | |
parent | 8366ebd3a153b25273176c75f4623d7a592144c5 (diff) | |
download | lilv-ec3e053611c5a7c1ffe5f0e308610a54b6d4cd92.tar.gz lilv-ec3e053611c5a7c1ffe5f0e308610a54b6d4cd92.tar.bz2 lilv-ec3e053611c5a7c1ffe5f0e308610a54b6d4cd92.zip |
Use angle brackets for library includes and clean up include paths
Diffstat (limited to 'tools/lv2info.c')
-rw-r--r-- | tools/lv2info.c | 10 |
1 files changed, 5 insertions, 5 deletions
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> |