mirror of https://github.com/madler/zlib
Avoid including stddef.h on Windows for Z_SOLO compile [Niessink].
This commit is contained in:
parent
c58f7ab28d
commit
3a8e3bd9e5
2
zconf.h
2
zconf.h
|
@ -426,7 +426,9 @@ typedef uLong FAR uLongf;
|
|||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
# ifndef Z_SOLO
|
||||
# include <stddef.h> /* for wchar_t */
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and
|
||||
|
|
|
@ -428,7 +428,9 @@ typedef uLong FAR uLongf;
|
|||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
# ifndef Z_SOLO
|
||||
# include <stddef.h> /* for wchar_t */
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and
|
||||
|
|
|
@ -426,7 +426,9 @@ typedef uLong FAR uLongf;
|
|||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
# ifndef Z_SOLO
|
||||
# include <stddef.h> /* for wchar_t */
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and
|
||||
|
|
Loading…
Reference in New Issue