]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/net/zlib.h
xnu-792.6.56.tar.gz
[apple/xnu.git] / bsd / net / zlib.h
index 688673ae54e54d1aea2730e8ba540c1ba43ea1e2..5f90b2049a2f56ce3717cbe91cb58db5ae4374eb 100644 (file)
@@ -40,7 +40,7 @@
 #define _ZLIB_H
 #include <sys/appleapiopts.h>
 
-#if !defined(KERNEL) || defined(__APPLE_API_PRIVATE)
+#ifdef KERNEL_PRIVATE
 
 #if __cplusplus
 extern "C" {
@@ -81,8 +81,10 @@ extern "C" {
 #  define compress2    z_compress2
 #  define uncompress   z_uncompress
 #  define adler32      z_adler32
+#if 0
 #  define crc32                z_crc32
 #  define get_crc_table z_get_crc_table
+#endif
 
 #  define Byte         z_Byte
 #  define uInt         z_uInt
@@ -1126,6 +1128,7 @@ ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
      if (adler != original_adler) error();
 */
 
+#if 0
 ZEXTERN uLong ZEXPORT crc32   OF((uLong crc, const Bytef *buf, uInt len));
 /*
      Update a running crc with the bytes buf[0..len-1] and return the updated
@@ -1141,6 +1144,7 @@ ZEXTERN uLong ZEXPORT crc32   OF((uLong crc, const Bytef *buf, uInt len));
      }
      if (crc != original_crc) error();
 */
+#endif
 
 
                         /* various hacks, don't look :) */
@@ -1181,6 +1185,6 @@ ZEXTERN const uLongf * ZEXPORT get_crc_table    OF((void));
 }
 #endif
 
-#endif /* !KERNEL || __APPLE_API_PRIVATE */
+#endif KERNEL_PRIVATE
 #endif /* _ZLIB_H */
 /* --- zlib.h */