libyang CHANGE headers includes cleanup using include-what-you-use tool (#1098)
diff --git a/src/parser_stmt.c b/src/parser_stmt.c
index 0d19f31..7c36dfc 100644
--- a/src/parser_stmt.c
+++ b/src/parser_stmt.c
@@ -12,12 +12,17 @@
* https://opensource.org/licenses/BSD-3-Clause
*/
-#include "common.h"
-
#include <assert.h>
#include <ctype.h>
#include <errno.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <string.h>
+#include "common.h"
+#include "dict.h"
+#include "log.h"
+#include "tree.h"
#include "tree_schema.h"
#include "tree_schema_internal.h"