about summary refs log tree commit diff homepage
path: root/tools
diff options
context:
space:
mode:
authorFrank Busse <bb0xfb@gmail.com>2013-10-30 22:39:03 +0100
committerDan Liew <daniel.liew@imperial.ac.uk>2013-11-05 16:24:13 +0000
commit4f6d1e2e238d836586a42377473df571b983f8f5 (patch)
tree3a0a374c7db63c9062e5782c84c1f653fa6846cb /tools
parentabf3863fa49b8300202ae3a96a68418aa03d496e (diff)
downloadklee-4f6d1e2e238d836586a42377473df571b983f8f5.tar.gz
sort and remove some includes
Diffstat (limited to 'tools')
-rw-r--r--tools/klee/main.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp
index 40bbead8..68f250f1 100644
--- a/tools/klee/main.cpp
+++ b/tools/klee/main.cpp
@@ -57,21 +57,20 @@
 #include "llvm/Support/Signals.h"
 #include "llvm/Support/system_error.h"
 #endif
-#include <iostream>
-#include <fstream>
-#include <cerrno>
+
 #include <dirent.h>
+#include <signal.h>
 #include <unistd.h>
-#include <errno.h>
 #include <sys/stat.h>
 #include <sys/wait.h>
-#include <signal.h>
 
+#include <cerrno>
+#include <fstream>
+#include <iomanip>
 #include <iostream>
 #include <iterator>
-#include <fstream>
 #include <sstream>
-#include <iomanip>
+
 
 using namespace llvm;
 using namespace klee;