diff options
author | David Robillard <d@drobilla.net> | 2020-12-15 21:33:49 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-15 21:33:49 +0100 |
commit | c3e339a0d27fe580197b03892b8f6c7391803c51 (patch) | |
tree | 2c2a84be143fe16a77dfcf42b5b88ce68011a802 /src/stack.h | |
parent | d3723c7ef921cd553b3f70303418517c1b04305a (diff) | |
download | serd-c3e339a0d27fe580197b03892b8f6c7391803c51.tar.gz serd-c3e339a0d27fe580197b03892b8f6c7391803c51.tar.bz2 serd-c3e339a0d27fe580197b03892b8f6c7391803c51.zip |
Clean up includes
Diffstat (limited to 'src/stack.h')
-rw-r--r-- | src/stack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stack.h b/src/stack.h index 9c1d075a..01f69de6 100644 --- a/src/stack.h +++ b/src/stack.h @@ -17,10 +17,10 @@ #ifndef SERD_STACK_H #define SERD_STACK_H -#include "serd_internal.h" - #include <assert.h> +#include <stdbool.h> #include <stddef.h> +#include <stdint.h> #include <stdlib.h> /** An offset to start the stack at. Note 0 is reserved for NULL. */ |