fix Windows build

This commit is contained in:
Cœur 2024-11-01 23:35:48 +01:00 committed by Nathan Moinvaziri
parent 3438b8832d
commit 6a1a1eed0b

View File

@ -5,8 +5,11 @@
#include <stdint.h>
#ifndef _ZLIB_H
# include "zlib.h"
#endif
# if __has_include(<zlib.h>)
# include <zlib.h>
# elif __has_include(<zlib-ng.h>)
# include <zlib-ng.h>
# endif
#endif
typedef uint64_t ZPOS64_T;