aboutsummaryrefslogtreecommitdiffstats
path: root/src/env.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-11 11:14:32 +0200
committerDavid Robillard <d@drobilla.net>2018-12-30 17:58:17 -0500
commit32c548683ed8ff8e585f069cd20ccddf54f00867 (patch)
treea78b62b9ac23e69d8380305531a1a054ab646a36 /src/env.c
parent520f208db173a103b37dbe0d67c2e29a684edb82 (diff)
downloadserd-32c548683ed8ff8e585f069cd20ccddf54f00867.tar.gz
serd-32c548683ed8ff8e585f069cd20ccddf54f00867.tar.bz2
serd-32c548683ed8ff8e585f069cd20ccddf54f00867.zip
Clean up includes and improve source file separation
Diffstat (limited to 'src/env.c')
-rw-r--r--src/env.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/env.c b/src/env.c
index a184b4a1..22165060 100644
--- a/src/env.c
+++ b/src/env.c
@@ -14,13 +14,15 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include "serd_internal.h"
+#include "node.h"
+
+#include "serd/serd.h"
+#include <stdbool.h>
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include "node.h"
-
typedef struct {
SerdNode* name;
SerdNode* uri;