summaryrefslogtreecommitdiffstats
path: root/src/util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.cc')
-rw-r--r--src/util.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/util.cc b/src/util.cc
index be2347c..7c2f895 100644
--- a/src/util.cc
+++ b/src/util.cc
@@ -34,10 +34,6 @@
#include <vector>
-#ifdef _WIN32
-#include <direct.h> // _mkdir
-#endif
-
#if defined(__APPLE__) || defined(__FreeBSD__)
#include <sys/sysctl.h>
#elif defined(linux)
@@ -163,14 +159,6 @@ bool CanonicalizePath(char* path, int* len, string* err) {
return true;
}
-int MakeDir(const string& path) {
-#ifdef _WIN32
- return _mkdir(path.c_str());
-#else
- return mkdir(path.c_str(), 0777);
-#endif
-}
-
int ReadFile(const string& path, string* contents, string* err) {
FILE* f = fopen(path.c_str(), "r");
if (!f) {