mirror of https://github.com/OpenTTD/OpenTTD
Codefix: Add missing include for io.h on WIN32 in network_content.cpp
parent
7c1898eaf1
commit
59f13a1cd0
|
@ -22,6 +22,10 @@
|
|||
|
||||
#if defined(WITH_ZLIB)
|
||||
# include <zlib.h>
|
||||
# if defined(_WIN32)
|
||||
/* Required for: dup, fileno, close */
|
||||
# include <io.h>
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifdef __EMSCRIPTEN__
|
||||
|
|
Loading…
Reference in New Issue