Move zlib include to zip/unzip headers like org minizip.

This commit is contained in:
Nathan Moinvaziri 2024-11-11 10:56:18 -08:00
parent 522196762d
commit 3bced613bc
3 changed files with 16 additions and 8 deletions

View File

@ -4,14 +4,6 @@
#include <stdint.h>
#if !defined(_ZLIB_H) && !defined(ZLIB_H) && !defined(ZLIB_H_)
# if __has_include(<zlib-ng.h>)
# include <zlib-ng.h>
# elif __has_include(<zlib.h>)
# include <zlib.h>
# endif
#endif
typedef uint64_t ZPOS64_T;
#ifndef ZEXPORT

View File

@ -19,6 +19,14 @@ extern "C" {
#include <stdint.h>
#if !defined(_ZLIB_H) && !defined(ZLIB_H) && !defined(ZLIB_H_)
# if __has_include(<zlib-ng.h>)
# include <zlib-ng.h>
# elif __has_include(<zlib.h>)
# include <zlib.h>
# endif
#endif
#ifndef _ZLIBIOAPI_H
# include "ioapi.h"
#endif

View File

@ -19,6 +19,14 @@ extern "C" {
#include <stdint.h>
#if !defined(_ZLIB_H) && !defined(ZLIB_H) && !defined(ZLIB_H_)
# if __has_include(<zlib-ng.h>)
# include <zlib-ng.h>
# elif __has_include(<zlib.h>)
# include <zlib.h>
# endif
#endif
#ifndef _ZLIBIOAPI_H
# include "ioapi.h"
#endif