aboutsummaryrefslogtreecommitdiffstats
path: root/src/lv2_evbuf.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/lv2_evbuf.c
parentba6f8e44590e19ff65274cf919e63f4035130ccb (diff)
downloadjalv-b4a3042da84420b80db0c81b90cd2df40a18f1c9.tar.gz
jalv-b4a3042da84420b80db0c81b90cd2df40a18f1c9.tar.bz2
jalv-b4a3042da84420b80db0c81b90cd2df40a18f1c9.zip
Clean up includes
Diffstat (limited to 'src/lv2_evbuf.c')
-rw-r--r--src/lv2_evbuf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lv2_evbuf.c b/src/lv2_evbuf.c
index bd17f49..a64d860 100644
--- a/src/lv2_evbuf.c
+++ b/src/lv2_evbuf.c
@@ -14,13 +14,13 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <assert.h>
-#include <stdlib.h>
-#include <string.h>
+#include "lv2_evbuf.h"
#include "lv2/atom/atom.h"
-#include "lv2_evbuf.h"
+#include <assert.h>
+#include <stdlib.h>
+#include <string.h>
struct LV2_Evbuf_Impl {
uint32_t capacity;