diff options
author | David Robillard <d@drobilla.net> | 2018-05-11 11:14:32 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-12-30 17:58:17 -0500 |
commit | 32c548683ed8ff8e585f069cd20ccddf54f00867 (patch) | |
tree | a78b62b9ac23e69d8380305531a1a054ab646a36 /src/node.c | |
parent | 520f208db173a103b37dbe0d67c2e29a684edb82 (diff) | |
download | serd-32c548683ed8ff8e585f069cd20ccddf54f00867.tar.gz serd-32c548683ed8ff8e585f069cd20ccddf54f00867.tar.bz2 serd-32c548683ed8ff8e585f069cd20ccddf54f00867.zip |
Clean up includes and improve source file separation
Diffstat (limited to 'src/node.c')
-rw-r--r-- | src/node.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -14,17 +14,20 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "node.h" + #include "serd_internal.h" +#include "string_utils.h" #include <assert.h> #include <float.h> #include <math.h> +#include <stdbool.h> +#include <stdint.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> -#include "node.h" -#include "string_utils.h" - #ifdef _WIN32 # ifndef isnan # define isnan(x) _isnan(x) |