diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-05-03 18:05:42 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-08-29 16:05:51 +0200 |
commit | 75ea00f391b742e435c650aae3e827aad913d552 (patch) | |
tree | ccbcbfa91a13676370c1e5ef92d11836b3c04229 /src/fs.cpp | |
parent | cceedbc4bf1056db17e0adf76d0db45b94777671 (diff) |
Remove unused fsbridge::freopen
Diffstat (limited to 'src/fs.cpp')
-rw-r--r-- | src/fs.cpp | 5 |
1 files changed, 0 insertions, 5 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() { |