Add includes and use std:: for standard library calls to make code
compile on windows. This patch was contributed by Paolo Invernizzi.
llvm-svn: 16539
diff --git a/llvm/lib/Support/DynamicLinker.cpp b/llvm/lib/Support/DynamicLinker.cpp
index a659303..1ebe3f2 100644
--- a/llvm/lib/Support/DynamicLinker.cpp
+++ b/llvm/lib/Support/DynamicLinker.cpp
@@ -21,8 +21,9 @@
#include "llvm/Support/DynamicLinker.h"
#include "llvm/Config/dlfcn.h"
#include "llvm/Config/windows.h"
-#include <cassert>
#include <vector>
+#include <cassert>
+#include <cstdio>
using namespace llvm;
#if defined(HAVE_WINDOWS_H)