From 4cbe88b220999c2078d62aee6955e39fae1bdaa8 Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Sun, 5 May 2024 22:10:24 +0200 Subject: [PATCH] Remove unused typedefs in phar.c --- ext/phar/phar.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/phar/phar.c b/ext/phar/phar.c index 63fbab7c3ea..99d7a77c8e3 100644 --- a/ext/phar/phar.c +++ b/ext/phar/phar.c @@ -3364,9 +3364,6 @@ static zend_op_array *phar_compile_file(zend_file_handle *file_handle, int type) } /* }}} */ -typedef zend_op_array* (zend_compile_t)(zend_file_handle*, int); -typedef zend_compile_t* (compile_hook)(zend_compile_t *ptr); - static void mime_type_dtor(zval *zv) { free(Z_PTR_P(zv));