diff options
author | David Robillard <d@drobilla.net> | 2010-11-26 20:57:48 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-11-26 20:57:48 +0000 |
commit | b97f5fa818ea966a36b5b98f9df985cb9e0279c8 (patch) | |
tree | 5a9011a231188e3836747f650ceca8a5c46c4c0e | |
parent | 8db955c711c0928e241e5dc7b77bf335dd4bb6d6 (diff) | |
download | lv2-b97f5fa818ea966a36b5b98f9df985cb9e0279c8.tar.xz |
Include <stddef.h> for size_t definition.
-rw-r--r-- | ext/resize-port.lv2/resize-port.h | 3 |
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" |