aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2014-12-22 19:42:24 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2014-12-22 19:42:24 +0000
commit03af50116d05118c328eb8910b9c512948414ca7 (patch)
tree04a95394fca9c12c0f04f8e8dba33fc04492a051
parent54edb3cd8fb0d8269cbfa29a67a4c2055386d1c6 (diff)
downloadlibmicrohttpd-03af50116d05118c328eb8910b9c512948414ca7.tar.gz
libmicrohttpd-03af50116d05118c328eb8910b9c512948414ca7.zip
response.c: include additional header for W32
-rw-r--r--src/microhttpd/response.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c
index d4d77fea..5a8be360 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.c
@@ -33,6 +33,9 @@
33#endif /* !WIN32_LEAN_AND_MEAN */ 33#endif /* !WIN32_LEAN_AND_MEAN */
34#include <windows.h> 34#include <windows.h>
35#endif /* _WIN32 && MHD_W32_MUTEX_ */ 35#endif /* _WIN32 && MHD_W32_MUTEX_ */
36#if defined(_WIN32)
37#include <io.h> /* for lseek(), read() */
38#endif /* _WIN32 */
36 39
37 40
38/** 41/**