diff --git a/src/fs.cpp b/src/fs.cpp index 01bdc3cff..74c86303b 100644 --- a/src/fs.cpp +++ b/src/fs.cpp @@ -1,15 +1,14 @@ // Copyright (c) 2017 The Bitcoin Core developers // Copyright (c) 2019 The Bitcoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include namespace fsbridge { FILE *fopen(const fs::path &p, const char *mode) { return ::fopen(p.string().c_str(), mode); } - } // namespace fsbridge