drop deprecated function wrappers

the callers (in our codebase) were adapted with pmg-api commit
2e08e3c97b6410ac0b6d985c99ba7ba3722d21f1
so we can safely drop them now

Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Stoiko Ivanov 2023-05-23 18:01:05 +02:00 committed by Thomas Lamprecht
parent 34f6f4f932
commit 56c892020c

View File

@ -74,16 +74,6 @@ int
archive_read_free(arg0) archive_read_free(arg0)
struct archive * arg0 struct archive * arg0
# archive_read_finish is deprecated in favor of archive_read_free
# can be dropped after changing all call-sites
int
archive_read_finish(arg0)
struct archive * arg0
CODE:
RETVAL = archive_read_free(arg0);
OUTPUT:
RETVAL
struct archive * struct archive *
archive_read_new() archive_read_new()
@ -119,16 +109,6 @@ int
archive_read_support_filter_all(arg0) archive_read_support_filter_all(arg0)
struct archive * arg0 struct archive * arg0
# archive_read_finish is deprecated in favor of archive_read_support_filter_all
# can be dropped after changing all call-sites
int
archive_read_support_compression_all(arg0)
struct archive * arg0
CODE:
RETVAL = archive_read_support_filter_all(arg0);
OUTPUT:
RETVAL
int int
archive_read_support_filter_bzip2(arg0) archive_read_support_filter_bzip2(arg0)
struct archive * arg0 struct archive * arg0