diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-18 15:38:49 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-18 15:38:49 +0000 |
commit | 4b585815458837b169d6552385eae941795f9036 (patch) | |
tree | 4b07845206a48e8d7700fecaa2739cefd68ae2e0 /llvm/lib/Support/SystemUtils.cpp | |
parent | 42a24823a16e4a627f45156903240424f43f04a3 (diff) | |
download | bcm5719-llvm-4b585815458837b169d6552385eae941795f9036.tar.gz bcm5719-llvm-4b585815458837b169d6552385eae941795f9036.zip |
* Fix file header and name
* Order #includes alphabetically
llvm-svn: 14234
Diffstat (limited to 'llvm/lib/Support/SystemUtils.cpp')
-rw-r--r-- | llvm/lib/Support/SystemUtils.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/lib/Support/SystemUtils.cpp b/llvm/lib/Support/SystemUtils.cpp index f016db2b99d..00dcd46e46b 100644 --- a/llvm/lib/Support/SystemUtils.cpp +++ b/llvm/lib/Support/SystemUtils.cpp @@ -1,4 +1,4 @@ -//===- SystemUtils.h - Utilities to do low-level system stuff --*- C++ -*--===// +//===- SystemUtils.cpp - Utilities for low-level system tasks -------------===// // // The LLVM Compiler Infrastructure // @@ -14,19 +14,19 @@ #define _POSIX_MAPPED_FILES #include "Support/SystemUtils.h" -#include "Config/sys/types.h" -#include "Config/sys/stat.h" #include "Config/fcntl.h" #include "Config/pagesize.h" -#include "Config/sys/wait.h" -#include "Config/sys/mman.h" #include "Config/unistd.h" +#include "Config/windows.h" +#include "Config/sys/mman.h" +#include "Config/sys/stat.h" +#include "Config/sys/types.h" +#include "Config/sys/wait.h" #include <algorithm> +#include <cerrno> +#include <cstdlib> #include <fstream> #include <iostream> -#include <cstdlib> -#include <cerrno> -#include "Config/windows.h" using namespace llvm; /// isExecutableFile - This function returns true if the filename specified |