diff options
author | David Robillard <d@drobilla.net> | 2020-12-16 16:52:53 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-16 16:52:53 +0100 |
commit | bf4ceb41a88f9adcaa5ec77db6e37f904c43d158 (patch) | |
tree | 1026b9fd0dbcc9934a269f72dee532592406e06d /lv2/atom | |
parent | ebd7d6fd1b8353ada9e3bfd6921b6dc834e7c46f (diff) | |
download | lv2-bf4ceb41a88f9adcaa5ec77db6e37f904c43d158.tar.xz |
Clean up includes
Diffstat (limited to 'lv2/atom')
-rw-r--r-- | lv2/atom/atom.h | 1 | ||||
-rw-r--r-- | lv2/atom/forge.h | 2 |
2 files changed, 2 insertions, 1 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" { |