diff options
author | John Criswell <criswell@uiuc.edu> | 2003-06-30 21:59:07 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-06-30 21:59:07 +0000 |
commit | 3ef61afb76ed32e53fae736883996353b3fb90ee (patch) | |
tree | 41855d87265fc9b572f4c540910d63e55ad54094 /llvm/lib/Support/SystemUtils.cpp | |
parent | 53426e6526efd0273213c881622c23c23af3449c (diff) | |
download | bcm5719-llvm-3ef61afb76ed32e53fae736883996353b3fb90ee.tar.gz bcm5719-llvm-3ef61afb76ed32e53fae736883996353b3fb90ee.zip |
Merged in autoconf branch. This provides configuration via the autoconf
system.
llvm-svn: 7014
Diffstat (limited to 'llvm/lib/Support/SystemUtils.cpp')
-rw-r--r-- | llvm/lib/Support/SystemUtils.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Support/SystemUtils.cpp b/llvm/lib/Support/SystemUtils.cpp index 51f3d18354d..97e13067d0a 100644 --- a/llvm/lib/Support/SystemUtils.cpp +++ b/llvm/lib/Support/SystemUtils.cpp @@ -10,12 +10,12 @@ #include <fstream> #include <iostream> #include <cstdlib> -#include <sys/types.h> -#include <sys/stat.h> -#include <fcntl.h> -#include <sys/wait.h> -#include <unistd.h> -#include <errno.h> +#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" /// removeFile - Delete the specified file /// |