diff options
author | David Robillard <d@drobilla.net> | 2010-10-16 02:44:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-16 02:44:02 +0000 |
commit | ddddc2a470706cfdb2c8c00dbdaa31acf22ab385 (patch) | |
tree | 9eb3046d6d87fec84a2c60f9c580347eb67c23dd /ext | |
parent | 7bf52cb8428d1eef69ca9fe9b038c019ff8a21c1 (diff) | |
download | lv2-ddddc2a470706cfdb2c8c00dbdaa31acf22ab385.tar.xz |
Fix compilation.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/contexts.lv2/test.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/contexts.lv2/test.c b/ext/contexts.lv2/test.c index f55cdd6..ca41a10 100644 --- a/ext/contexts.lv2/test.c +++ b/ext/contexts.lv2/test.c @@ -1,8 +1,10 @@ #include <stdio.h> +#include <stdint.h> +#include <stdbool.h> #include <limits.h> #include <assert.h> #include <unistd.h> -#include "lv2_contexts.h" +#include "contexts.h" #define TEST_ASSERT(check) do {\ if (!(check)) {\ |