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/json.h b/src/json.h
index 37fbc8d..5adac03 100644
--- a/src/json.h
+++ b/src/json.h
@@ -22,8 +22,7 @@
#include "set.h"
struct ly_ctx;
-struct ly_out;
-struct ly_prefix;
+struct ly_in;
/* Macro to test if character is whitespace */
#define is_jsonws(c) (c == 0x20 || c == 0x9 || c == 0xa || c == 0xd)