diff options
author | twosee <twose@qq.com> | 2020-06-06 20:13:38 +0800 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-06-07 10:36:50 +0200 |
commit | 1b85e749c7e892db727806a92f4e215a8538ba9e (patch) | |
tree | c6f8b947d544635d6ace6517f4e02cecf31489fa /ext/simplexml/php_simplexml.h | |
parent | 68fdad82c9a3d1d1fc03975b7b91fdb940c621e0 (diff) | |
download | php-git-1b85e749c7e892db727806a92f4e215a8538ba9e.tar.gz |
Fix warning of strict-prototypes
Closes GH-5673.
Diffstat (limited to 'ext/simplexml/php_simplexml.h')
-rw-r--r-- | ext/simplexml/php_simplexml.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/simplexml/php_simplexml.h b/ext/simplexml/php_simplexml.h index 164525d7b6..4620afad06 100644 --- a/ext/simplexml/php_simplexml.h +++ b/ext/simplexml/php_simplexml.h @@ -77,6 +77,6 @@ typedef struct { # define PHP_SXE_API ZEND_API #endif -PHP_SXE_API zend_class_entry *sxe_get_element_class_entry(); +PHP_SXE_API zend_class_entry *sxe_get_element_class_entry(void); #endif |