Skip to content

Commit

Permalink
fix building zlib in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-w committed Mar 14, 2024
1 parent d998e1b commit 503cc41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/external/zlib/gzguts.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#endif

#include <stdio.h>
#include <unistd.h>
#include "zlib.h"
#ifdef STDC
# include <string.h>
Expand All @@ -33,6 +32,8 @@

#ifdef _WIN32
# include <stddef.h>
#else
# include <unistd.h>
#endif

#if defined(__TURBOC__) || defined(_MSC_VER) || defined(_WIN32)
Expand Down

0 comments on commit 503cc41

Please sign in to comment.