Browse Source

add stdio.h

David Rose 21 years ago
parent
commit
82abe508ae

+ 0 - 1
pandatool/src/vrml/parse_vrml.cxx

@@ -38,7 +38,6 @@ extern int vrmlyyparse();
 extern void vrmlyyResetLineNumber();
 extern int vrmlyydebug;
 extern int vrmlyy_flex_debug;
-extern FILE *vrmlyyin;
 
 extern VrmlScene *parsed_scene;
 

+ 3 - 0
pandatool/src/vrml/vrmlNodeType.cxx

@@ -18,6 +18,9 @@
 #include "notify.h"
 #include "indent.h"
 
+#include <stdio.h>  // for sprintf()
+
+
 //
 // Static list of node types.
 //

+ 2 - 0
pandatool/src/vrml/vrmlParser.yxx

@@ -45,7 +45,9 @@
 #include "vrmlNode.h"
 #include "notify.h"
 #include "plist.h"
+
 #include <stack>
+#include <stdio.h>  // for sprintf()
 
 //#define YYDEBUG 1