[llvm-commits] CVS: llvm/lib/Support/SystemUtils.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Jan 10 13:16:13 PST 2004


Changes in directory llvm/lib/Support:

SystemUtils.cpp updated: 1.20 -> 1.21

---
Log message:

Remove config wrapper around <cerrno>


---
Diffs of the changes:  (+5 -5)

Index: llvm/lib/Support/SystemUtils.cpp
diff -u llvm/lib/Support/SystemUtils.cpp:1.20 llvm/lib/Support/SystemUtils.cpp:1.21
--- llvm/lib/Support/SystemUtils.cpp:1.20	Sun Dec 14 15:35:53 2003
+++ llvm/lib/Support/SystemUtils.cpp	Sat Jan 10 13:15:14 2004
@@ -13,16 +13,16 @@
 //===----------------------------------------------------------------------===//
 
 #include "Support/SystemUtils.h"
-#include <algorithm>
-#include <fstream>
-#include <iostream>
-#include <cstdlib>
 #include "Config/sys/types.h"
 #include "Config/sys/stat.h"
 #include "Config/fcntl.h"
 #include "Config/sys/wait.h"
 #include "Config/unistd.h"
-#include "Config/errno.h"
+#include <algorithm>
+#include <fstream>
+#include <iostream>
+#include <cstdlib>
+#include <cerrno>
 using namespace llvm;
 
 /// isExecutableFile - This function returns true if the filename specified





More information about the llvm-commits mailing list