aboutsummaryrefslogtreecommitdiffstats
path: root/src/state.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-10-17 15:43:18 +0200
committerDavid Robillard <d@drobilla.net>2019-10-17 15:43:18 +0200
commitb4a3042da84420b80db0c81b90cd2df40a18f1c9 (patch)
tree13ab68db50c61f332b948f248fe1c6b206f88712 /src/state.c
parentba6f8e44590e19ff65274cf919e63f4035130ccb (diff)
downloadjalv-b4a3042da84420b80db0c81b90cd2df40a18f1c9.tar.gz
jalv-b4a3042da84420b80db0c81b90cd2df40a18f1c9.tar.bz2
jalv-b4a3042da84420b80db0c81b90cd2df40a18f1c9.zip
Clean up includes
Diffstat (limited to 'src/state.c')
-rw-r--r--src/state.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/state.c b/src/state.c
index 899e61f..dab6c02 100644
--- a/src/state.c
+++ b/src/state.c
@@ -14,13 +14,8 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <assert.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <errno.h>
-#include <sys/stat.h>
-#include <sys/types.h>
+#include "jalv_config.h"
+#include "jalv_internal.h"
#ifdef HAVE_LV2_STATE
# include "lv2/lv2plug.in/ns/ext/state/state.h"
@@ -28,8 +23,13 @@
#include "lilv/lilv.h"
-#include "jalv_config.h"
-#include "jalv_internal.h"
+#include <assert.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <errno.h>
+#include <sys/stat.h>
+#include <sys/types.h>
#define NS_JALV "http://drobilla.net/ns/jalv#"
#define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#"