diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/fs.cpp | 5 | ||||
-rw-r--r-- | src/fs.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/fs.cpp b/src/fs.cpp index e7d06e45ab..2dbc13643b 100644 --- a/src/fs.cpp +++ b/src/fs.cpp @@ -14,11 +14,6 @@ FILE *fopen(const fs::path& p, const char *mode) return ::fopen(p.string().c_str(), mode); } -FILE *freopen(const fs::path& p, const char *mode, FILE *stream) -{ - return ::freopen(p.string().c_str(), mode, stream); -} - #ifndef WIN32 static std::string GetErrorReason() { @@ -18,7 +18,6 @@ namespace fs = boost::filesystem; /** Bridge operations to C stdio */ namespace fsbridge { FILE *fopen(const fs::path& p, const char *mode); - FILE *freopen(const fs::path& p, const char *mode, FILE *stream); class FileLock { |