diff options
Diffstat (limited to 'lv2')
-rw-r--r-- | lv2/atom/atom.h | 1 | ||||
-rw-r--r-- | lv2/atom/forge.h | 2 | ||||
-rw-r--r-- | lv2/log/logger.h | 3 | ||||
-rw-r--r-- | lv2/resize-port/resize-port.h | 1 | ||||
-rw-r--r-- | lv2/state/state.h | 1 |
5 files changed, 4 insertions, 4 deletions
diff --git a/lv2/atom/atom.h b/lv2/atom/atom.h index 06b9943..7ea0db7 100644 --- a/lv2/atom/atom.h +++ b/lv2/atom/atom.h @@ -28,7 +28,6 @@ #ifndef LV2_ATOM_H #define LV2_ATOM_H -#include <stddef.h> #include <stdint.h> #define LV2_ATOM_URI "http://lv2plug.in/ns/ext/atom" ///< http://lv2plug.in/ns/ext/atom diff --git a/lv2/atom/forge.h b/lv2/atom/forge.h index 037088a..b87d12f 100644 --- a/lv2/atom/forge.h +++ b/lv2/atom/forge.h @@ -58,6 +58,8 @@ #include <assert.h> #include <stdbool.h> +#include <stdint.h> +#include <string.h> #ifdef __cplusplus extern "C" { diff --git a/lv2/log/logger.h b/lv2/log/logger.h index b66a8e4..6e89ac8 100644 --- a/lv2/log/logger.h +++ b/lv2/log/logger.h @@ -29,9 +29,10 @@ #define LV2_ATOM_LOGGER_H #include "lv2/log/log.h" +#include "lv2/urid/urid.h" +#include <stdarg.h> #include <stdio.h> -#include <string.h> #ifdef __cplusplus extern "C" { diff --git a/lv2/resize-port/resize-port.h b/lv2/resize-port/resize-port.h index a60626d..d3e1ebd 100644 --- a/lv2/resize-port/resize-port.h +++ b/lv2/resize-port/resize-port.h @@ -26,7 +26,6 @@ #ifndef LV2_RESIZE_PORT_H #define LV2_RESIZE_PORT_H -#include <stdbool.h> #include <stddef.h> #include <stdint.h> diff --git a/lv2/state/state.h b/lv2/state/state.h index 367ef23..9efb08a 100644 --- a/lv2/state/state.h +++ b/lv2/state/state.h @@ -31,7 +31,6 @@ #include "lv2/core/lv2.h" -#include <stdbool.h> #include <stddef.h> #include <stdint.h> |