aboutsummaryrefslogtreecommitdiff
path: root/build/mkdir
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-02-24 08:54:03 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-02-24 08:54:03 +0200
commitcd9a4ea692ba87aa03a80489bf03736e713722c7 (patch)
treeb98abc4442dd3fa55cdb3c37f50da5a210a15126 /build/mkdir
parentfdb050b4b1b966683ff00dd14b268fe395492358 (diff)
Sort out diagnostics for mkdir
Diffstat (limited to 'build/mkdir')
-rw-r--r--build/mkdir22
1 files changed, 22 insertions, 0 deletions
diff --git a/build/mkdir b/build/mkdir
new file mode 100644
index 0000000..62e824b
--- /dev/null
+++ b/build/mkdir
@@ -0,0 +1,22 @@
+// file : build/mkdir -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BUILD_MKDIR
+#define BUILD_MKDIR
+
+#include <sys/types.h> // mode_t
+
+#include <build/path>
+
+namespace build
+{
+ // Note that you should probably use the default mode 0777 and let
+ // the umask mechanism adjust it to the user's preferences. Errors
+ // are reported by throwing std::system_error.
+ //
+ void
+ mkdir (const path&, mode_t = 0777);
+}
+
+#endif // BUILD_MKDIR