summaryrefslogtreecommitdiff
path: root/lib/Support/SystemUtils.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-06-18 15:38:49 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-06-18 15:38:49 +0000
commitebb0faabd3df5eab24178da692b75aa79b0d65c7 (patch)
tree79fa50529d7fe8ee7c88392857b5a0f25253ad36 /lib/Support/SystemUtils.cpp
parentb48730372594d6a476d0a32c4ce12d963ee3812a (diff)
downloadllvm-ebb0faabd3df5eab24178da692b75aa79b0d65c7.tar.gz
llvm-ebb0faabd3df5eab24178da692b75aa79b0d65c7.tar.bz2
llvm-ebb0faabd3df5eab24178da692b75aa79b0d65c7.tar.xz
* Fix file header and name
* Order #includes alphabetically git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14234 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/SystemUtils.cpp')
-rw-r--r--lib/Support/SystemUtils.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/Support/SystemUtils.cpp b/lib/Support/SystemUtils.cpp
index f016db2b99..00dcd46e46 100644
--- a/lib/Support/SystemUtils.cpp
+++ b/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