diff options
| author | practicalswift <[email protected]> | 2018-05-03 18:05:42 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-08-29 16:05:51 +0200 |
| commit | 75ea00f391b742e435c650aae3e827aad913d552 (patch) | |
| tree | ccbcbfa91a13676370c1e5ef92d11836b3c04229 /src/fs.cpp | |
| parent | Don't close old debug log file handle prematurely when trying to re-open (on ... (diff) | |
| download | discoin-75ea00f391b742e435c650aae3e827aad913d552.tar.xz discoin-75ea00f391b742e435c650aae3e827aad913d552.zip | |
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 e7d06e45a..2dbc13643 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() { |