From 75ea00f391b742e435c650aae3e827aad913d552 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Thu, 3 May 2018 18:05:42 +0200 Subject: Remove unused fsbridge::freopen --- src/fs.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/fs.cpp') 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() { -- cgit v1.2.3