Use the C++, more portable, deleter


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7483 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Support/SystemUtils.cpp b/lib/Support/SystemUtils.cpp
index aca9e5a..ec0bcb3 100644
--- a/lib/Support/SystemUtils.cpp
+++ b/lib/Support/SystemUtils.cpp
@@ -20,7 +20,7 @@
 /// removeFile - Delete the specified file
 ///
 void removeFile(const std::string &Filename) {
-  unlink(Filename.c_str());
+  std::remove(Filename.c_str());
 }
 
 /// getUniqueFilename - Return a filename with the specified prefix.  If the