Remove POSIX rename wrapper

Unused by now, use `<filesystem>` instead.

Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
Ralph Sennhauser
2026-06-18 17:45:50 +02:00
parent 792949e812
commit 62e116340e
@@ -92,8 +92,3 @@ int wclose(int fd)
{
return close(fd);
}
int wrename(const OsPath& pathnameOld, const OsPath& pathnameNew)
{
return rename(OsString(pathnameOld).c_str(), OsString(pathnameNew).c_str());
}