diff options
author | David Robillard <d@drobilla.net> | 2018-12-27 14:16:47 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-12-27 14:16:47 -0500 |
commit | fb88a51162097d1117ea8b96958aa98e2fcbf2a3 (patch) | |
tree | fdc4d5d63955da6b5e136313ddd1d7d74a5639eb /sratom | |
parent | c4a82520cebb3a7d68a936c2101d0e004deb8826 (diff) | |
download | sratom-fb88a51162097d1117ea8b96958aa98e2fcbf2a3.tar.gz sratom-fb88a51162097d1117ea8b96958aa98e2fcbf2a3.tar.bz2 sratom-fb88a51162097d1117ea8b96958aa98e2fcbf2a3.zip |
Sort includes
Diffstat (limited to 'sratom')
-rw-r--r-- | sratom/sratom.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sratom/sratom.h b/sratom/sratom.h index 3d6351a..37c978a 100644 --- a/sratom/sratom.h +++ b/sratom/sratom.h @@ -21,15 +21,15 @@ #ifndef SRATOM_SRATOM_H #define SRATOM_SRATOM_H -#include <stdbool.h> -#include <stdint.h> - -#include "lv2/lv2plug.in/ns/ext/urid/urid.h" #include "lv2/lv2plug.in/ns/ext/atom/atom.h" #include "lv2/lv2plug.in/ns/ext/atom/forge.h" +#include "lv2/lv2plug.in/ns/ext/urid/urid.h" #include "serd/serd.h" #include "sord/sord.h" +#include <stdbool.h> +#include <stdint.h> + #ifdef SRATOM_SHARED # ifdef _WIN32 # define SRATOM_LIB_IMPORT __declspec(dllimport) |