Include <cstdio> instead of <stdio.h>.

llvm-svn: 9032
diff --git a/llvm/lib/Target/Sparc/Sparc.burg.in b/llvm/lib/Target/Sparc/Sparc.burg.in
index 6c3b659..ccb3948 100644
--- a/llvm/lib/Target/Sparc/Sparc.burg.in
+++ b/llvm/lib/Target/Sparc/Sparc.burg.in
@@ -1,5 +1,5 @@
 %{               // -*- C++ -*-
-Xinclude <stdio.h>
+Xinclude <cstdio>
 Xinclude <llvm/CodeGen/InstrForest.h>
 
 typedef InstrTreeNode* NODEPTR_TYPE;
diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
index 9401afe..df2b764 100644
--- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
+++ b/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
@@ -34,7 +34,7 @@
 #include "llvm/Module.h"
 #include "Graph.h"
 #include <fstream>
-#include "Config/stdio.h"
+#include <cstdio>
 
 struct ProfilePaths : public FunctionPass {
   bool runOnFunction(Function &F);
diff --git a/llvm/runtime/GCCLibraries/crtend/C++-Exception.cpp b/llvm/runtime/GCCLibraries/crtend/C++-Exception.cpp
index b521f14..ad9f7a5 100644
--- a/llvm/runtime/GCCLibraries/crtend/C++-Exception.cpp
+++ b/llvm/runtime/GCCLibraries/crtend/C++-Exception.cpp
@@ -14,7 +14,7 @@
 //#define DEBUG
 
 #ifdef DEBUG
-#include <stdio.h>
+#include <cstdio>
 #endif
 
 // LastCaughtException - The last exception caught by this handler.  This is for