diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-12 15:43:17 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-12 15:43:17 +0200 |
commit | cf6b3e34b59ad120111e0c1ead779bbb3a70c38d (patch) | |
tree | 424e9def98c65d9080e72a69064334c6716fb82b /build/mkdir | |
parent | 5925c11a1fe8b2e02b790dd40b031ae005d5b68f (diff) |
Implement clean operation
Diffstat (limited to 'build/mkdir')
-rw-r--r-- | build/mkdir | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/build/mkdir b/build/mkdir deleted file mode 100644 index 62e824b..0000000 --- a/build/mkdir +++ /dev/null @@ -1,22 +0,0 @@ -// 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 |