diff options
author | David Robillard <d@drobilla.net> | 2020-07-15 16:22:17 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-16 11:24:59 +0200 |
commit | 212b4bedb565b3ccc807917b94ed5b67023603db (patch) | |
tree | 91ff6ec848196b238a2624a23c11236521cb2b02 /test | |
parent | d7ab0b3eab59f6068d697399da50734e57c5ca83 (diff) | |
download | lilv-212b4bedb565b3ccc807917b94ed5b67023603db.tar.gz lilv-212b4bedb565b3ccc807917b94ed5b67023603db.tar.bz2 lilv-212b4bedb565b3ccc807917b94ed5b67023603db.zip |
Clean up includes
Diffstat (limited to 'test')
-rw-r--r-- | test/lilv_test_utils.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/lilv_test_utils.c b/test/lilv_test_utils.c index 5d692ea..c8a80bb 100644 --- a/test/lilv_test_utils.c +++ b/test/lilv_test_utils.c @@ -21,20 +21,21 @@ #include "../src/lilv_internal.h" #include "lilv/lilv.h" +#include "serd/serd.h" #ifdef _WIN32 # include <direct.h> -# include <io.h> # define mkdir(path, flags) _mkdir(path) #else # include <unistd.h> #endif #include <errno.h> +#include <stdbool.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <sys/stat.h> LilvTestEnv* lilv_test_env_new(void) |