Moved include of <cstdarg> to cpp file
diff --git a/tinyxml2.cpp b/tinyxml2.cpp
index edf714d..c1589ec 100755
--- a/tinyxml2.cpp
+++ b/tinyxml2.cpp
@@ -26,8 +26,10 @@
 #include <new>		// yes, this one new style header, is in the Android SDK.

 #if defined(ANDROID_NDK) || defined(__QNXNTO__)

 #   include <stddef.h>

+#   include <stdarg.h>

 #else

 #   include <cstddef>

+#   include <cstdarg>

 #endif

 

 #if defined(_MSC_VER) && (_MSC_VER >= 1400 ) && (!defined WINCE)