libyang CHANGE review header includes

The plugins_types.h was supposed only for implementing data type plugins
code, so I've removed it from libyang.h (now it is supposed to be
included explicitly).
diff --git a/src/tree_schema.c b/src/tree_schema.c
index 6bcd7eb..4236cc6 100644
--- a/src/tree_schema.c
+++ b/src/tree_schema.c
@@ -17,7 +17,6 @@
 #include "tree_schema.h"
 
 #include <assert.h>
-#include <ctype.h>
 #include <dirent.h>
 #include <errno.h>
 #include <stdint.h>
@@ -31,8 +30,9 @@
 #include "compat.h"
 #include "context.h"
 #include "dict.h"
-#include "log.h"
+#include "in.h"
 #include "in_internal.h"
+#include "log.h"
 #include "parser_internal.h"
 #include "parser_schema.h"
 #include "path.h"
@@ -41,6 +41,7 @@
 #include "schema_features.h"
 #include "set.h"
 #include "tree.h"
+#include "tree_data.h"
 #include "tree_schema_internal.h"
 #include "xpath.h"