1
0
Fork 0

Codefix: Add missing include for io.h on WIN32 in network_content.cpp

pull/13527/head
Jonathan G Rennison 2025-02-10 22:56:38 +00:00
parent 7c1898eaf1
commit 59f13a1cd0
1 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,11 @@
#include "table/strings.h" #include "table/strings.h"
#if defined(WITH_ZLIB) #if defined(WITH_ZLIB)
#include <zlib.h> # include <zlib.h>
# if defined(_WIN32)
/* Required for: dup, fileno, close */
# include <io.h>
# endif
#endif #endif
#ifdef __EMSCRIPTEN__ #ifdef __EMSCRIPTEN__