CLEANUP: compression: remove calls to SLZ init functions

As we now embed the library we don't need to support the older 1.0 API
any more, so we can remove the explicit calls to slz_make_crc_table()
and slz_prepare_dist_table().
diff --git a/include/import/slz.h b/include/import/slz.h
index cbbefb7..0251a85 100644
--- a/include/import/slz.h
+++ b/include/import/slz.h
@@ -84,13 +84,11 @@
 };
 
 /* Functions specific to rfc1951 (deflate) */
-void slz_prepare_dist_table(); /* obsolete, not needed anymore */
 long slz_rfc1951_encode(struct slz_stream *strm, unsigned char *out, const unsigned char *in, long ilen, int more);
 int slz_rfc1951_init(struct slz_stream *strm, int level);
 int slz_rfc1951_finish(struct slz_stream *strm, unsigned char *buf);
 
 /* Functions specific to rfc1952 (gzip) */
-void slz_make_crc_table(void); /* obsolete, not needed anymore */
 uint32_t slz_crc32_by1(uint32_t crc, const unsigned char *buf, int len);
 uint32_t slz_crc32_by4(uint32_t crc, const unsigned char *buf, int len);
 long slz_rfc1952_encode(struct slz_stream *strm, unsigned char *out, const unsigned char *in, long ilen, int more);
diff --git a/src/compression.c b/src/compression.c
index 28eb654..911d0ac 100644
--- a/src/compression.c
+++ b/src/compression.c
@@ -708,11 +708,6 @@
 __attribute__((constructor))
 static void __comp_fetch_init(void)
 {
-#ifdef USE_SLZ
-	slz_make_crc_table();
-	slz_prepare_dist_table();
-#endif
-
 #if defined(USE_ZLIB) && defined(DEFAULT_MAXZLIBMEM)
 	global.maxzlibmem = DEFAULT_MAXZLIBMEM * 1024U * 1024U;
 #endif
diff --git a/src/slz.c b/src/slz.c
index ddba741..db261f8 100644
--- a/src/slz.c
+++ b/src/slz.c
@@ -1304,18 +1304,6 @@
 	return strm->outbuf - buf;
 }
 
-/* This used to be the function called to build the CRC table at init time.
- * Now it does nothing, it's only kept for API/ABI compatibility.
- */
-void slz_make_crc_table(void)
-{
-}
-
-/* does nothing anymore, only kept for ABI compatibility */
-void slz_prepare_dist_table()
-{
-}
-
 __attribute__((constructor))
 static void __slz_initialize(void)
 {