aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.posix/posix.rename.ccm
diff options
context:
space:
mode:
Diffstat (limited to 'nihil.posix/posix.rename.ccm')
-rw-r--r--nihil.posix/posix.rename.ccm23
1 files changed, 0 insertions, 23 deletions
diff --git a/nihil.posix/posix.rename.ccm b/nihil.posix/posix.rename.ccm
deleted file mode 100644
index 796ec5b..0000000
--- a/nihil.posix/posix.rename.ccm
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * This source code is released into the public domain.
- */
-
-module;
-
-#include <expected>
-#include <filesystem>
-
-export module nihil.posix:rename;
-
-import nihil.error;
-
-namespace nihil {
-
-/*
- * Rename a file (or directory).
- */
-export [[nodiscard]] auto
-rename(std::filesystem::path const &oldp, std::filesystem::path const &newp)
- -> std::expected<void, error>;
-
-} // namespace nihil