Skip to content

Commit bd953c8

Browse files
committed
include cstdio
1 parent 5d6f6c6 commit bd953c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cpp-terminal/private/file.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
#include <cstddef>
1515
#include <cstdint>
16+
#include <cstdio>
1617
#include <mutex>
1718
#include <string>
1819

@@ -49,7 +50,7 @@ class FileHandler
4950
std::recursive_mutex& m_mutex; //NOLINT(cppcoreguidelines-avoid-const-or-ref-data-members)
5051
bool m_null{false};
5152
Handle m_handle{nullptr};
52-
FILE* m_file{nullptr};
53+
std::FILE* m_file{nullptr};
5354
std::int32_t m_fd{-1};
5455
};
5556

0 commit comments

Comments
 (0)