aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-11-26 20:57:48 +0000
committerDavid Robillard <d@drobilla.net>2010-11-26 20:57:48 +0000
commitb97f5fa818ea966a36b5b98f9df985cb9e0279c8 (patch)
tree5a9011a231188e3836747f650ceca8a5c46c4c0e /ext
parent8db955c711c0928e241e5dc7b77bf335dd4bb6d6 (diff)
downloadlv2-b97f5fa818ea966a36b5b98f9df985cb9e0279c8.tar.xz
Include <stddef.h> for size_t definition.
Diffstat (limited to 'ext')
-rw-r--r--ext/resize-port.lv2/resize-port.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/resize-port.lv2/resize-port.h b/ext/resize-port.lv2/resize-port.h
index ad6a5dc..7f014a3 100644
--- a/ext/resize-port.lv2/resize-port.h
+++ b/ext/resize-port.lv2/resize-port.h
@@ -19,8 +19,9 @@
#ifndef LV2_RESIZE_PORT_H
#define LV2_RESIZE_PORT_H
-#include <stdint.h>
#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
#define LV2_RESIZE_PORT_URI "http://lv2plug.in/ns/ext/resize-port"