Because some systems have reported that this example would not build the
header file cstdio was added as an include.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129291 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/examples/ExceptionDemo/ExceptionDemo.cpp b/examples/ExceptionDemo/ExceptionDemo.cpp
index 5d7a63d..cc51706 100644
--- a/examples/ExceptionDemo/ExceptionDemo.cpp
+++ b/examples/ExceptionDemo/ExceptionDemo.cpp
@@ -62,6 +62,11 @@
#include "llvm/Support/IRBuilder.h"
#include "llvm/Support/Dwarf.h"
+// Note: Some systems seem to have a problem finding
+// the symbols like stderr, and fprintf when this
+// header file is not included
+#include <cstdio>
+
#include <sstream>
#include <stdexcept>