========================================================================= */
| 944 | |
| 945 | /* ========================================================================= */ |
| 946 | uLong ZEXPORT crc32(uLong crc, const unsigned char FAR *buf, uInt len) { |
| 947 | #ifdef HAVE_S390X_VX |
| 948 | return crc32_z_hook(crc, buf, len); |
| 949 | #endif |
| 950 | return crc32_z(crc, buf, len); |
| 951 | } |
| 952 | |
| 953 | /* ========================================================================= */ |
| 954 | uLong ZEXPORT crc32_combine_gen64(z_off64_t len2) { |
no test coverage detected