aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv.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/jalv.c
parentba6f8e44590e19ff65274cf919e63f4035130ccb (diff)
downloadjalv-b4a3042da84420b80db0c81b90cd2df40a18f1c9.tar.gz
jalv-b4a3042da84420b80db0c81b90cd2df40a18f1c9.tar.bz2
jalv-b4a3042da84420b80db0c81b90cd2df40a18f1c9.zip
Clean up includes
Diffstat (limited to 'src/jalv.c')
-rw-r--r--src/jalv.c39
1 files changed, 17 insertions, 22 deletions
diff --git a/src/jalv.c b/src/jalv.c
index 46aaa3d..1477040 100644
--- a/src/jalv.c
+++ b/src/jalv.c
@@ -17,28 +17,10 @@
#define _POSIX_C_SOURCE 200809L /* for mkdtemp */
#define _DARWIN_C_SOURCE /* for mkdtemp on OSX */
-#include <assert.h>
-#include <math.h>
-#include <signal.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <sys/stat.h>
-#include <sys/types.h>
-
-#ifndef __cplusplus
-# include <stdbool.h>
-#endif
-
-#ifdef _WIN32
-# include <io.h> /* for _mktemp */
-# define snprintf _snprintf
-#else
-# include <unistd.h>
-#endif
-
#include "jalv_config.h"
#include "jalv_internal.h"
+#include "lv2_evbuf.h"
+#include "worker.h"
#include "lv2/atom/atom.h"
#include "lv2/buf-size/buf-size.h"
@@ -61,8 +43,21 @@
#include "suil/suil.h"
#endif
-#include "lv2_evbuf.h"
-#include "worker.h"
+#ifdef _WIN32
+# include <io.h> /* for _mktemp */
+# define snprintf _snprintf
+#else
+# include <unistd.h>
+#endif
+
+#include <assert.h>
+#include <math.h>
+#include <signal.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/stat.h>
+#include <sys/types.h>
#define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
#define NS_XSD "http://www.w3.org/2001/XMLSchema#"