diff options
author | David Robillard <d@drobilla.net> | 2020-06-21 17:38:08 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-06-21 18:06:22 +0200 |
commit | 8353731836d8a79265d93792d29b8b4550a8c09e (patch) | |
tree | 18d1d623fdf1dda57deb90d62a44414ca6772959 /src/string.c | |
parent | 16573e710c9481ede8b12f5c00127f8e8a975d02 (diff) | |
download | serd-8353731836d8a79265d93792d29b8b4550a8c09e.tar.gz serd-8353731836d8a79265d93792d29b8b4550a8c09e.tar.bz2 serd-8353731836d8a79265d93792d29b8b4550a8c09e.zip |
Clean up includes
Diffstat (limited to 'src/string.c')
-rw-r--r-- | src/string.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/string.c b/src/string.c index 0869bc23..b73cea03 100644 --- a/src/string.c +++ b/src/string.c @@ -1,5 +1,5 @@ /* - Copyright 2011-2016 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -16,7 +16,11 @@ #include "serd_internal.h" +#include "serd/serd.h" + #include <math.h> +#include <stdint.h> +#include <stdlib.h> void serd_free(void* ptr) |