diff options
author | David Robillard <d@drobilla.net> | 2020-12-16 11:02:14 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-16 11:02:14 +0100 |
commit | 86da10ac94f64d16ad145200664fc8532fd90783 (patch) | |
tree | fd1d165360f7a5d8af71ba104cc88c84132a7eab /src/sord.c | |
parent | 115978bcfcc05cda48b39c19010839d5a179984c (diff) | |
download | sord-86da10ac94f64d16ad145200664fc8532fd90783.tar.gz sord-86da10ac94f64d16ad145200664fc8532fd90783.tar.bz2 sord-86da10ac94f64d16ad145200664fc8532fd90783.zip |
Clean up includes
Diffstat (limited to 'src/sord.c')
-rw-r--r-- | src/sord.c | 26 |
1 files changed, 16 insertions, 10 deletions
@@ -14,21 +14,27 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -// C99 -#include <assert.h> -#include <errno.h> -#include <stdint.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> +#include "sord_config.h" // IWYU pragma: keep +#include "sord_internal.h" + +#include "serd/serd.h" +#include "sord/sord.h" #define ZIX_INLINE +#include "zix/btree.c" +#include "zix/btree.h" +#include "zix/common.h" #include "zix/digest.c" #include "zix/hash.c" -#include "zix/btree.c" +#include "zix/hash.h" -#include "sord_config.h" -#include "sord_internal.h" +#include <assert.h> +#include <stdarg.h> +#include <stdbool.h> +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> #ifdef __GNUC__ # define SORD_LOG_FUNC(fmt, arg1) __attribute__((format(printf, fmt, arg1))) |