summaryrefslogtreecommitdiff
path: root/ext/ffi/tests/100.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ffi/tests/100.phpt')
-rw-r--r--ext/ffi/tests/100.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/ffi/tests/100.phpt b/ext/ffi/tests/100.phpt
index 572052f372..634d8d4436 100644
--- a/ext/ffi/tests/100.phpt
+++ b/ext/ffi/tests/100.phpt
@@ -17,13 +17,13 @@ ffi.enable=1
require_once('utils.inc');
$fastcall = ffi_get_fastcall_specifier();
$zend = ffi_cdef("
- const char *get_zend_version(void);
- //char *get_zend_version(void);
- extern size_t (*zend_printf)(const char *format, ...);
+ const char *get_zend_version(void);
+ //char *get_zend_version(void);
+ extern size_t (*zend_printf)(const char *format, ...);
- unsigned long $fastcall zend_hash_func(const char *str, size_t len);
+ unsigned long $fastcall zend_hash_func(const char *str, size_t len);
- void $fastcall zend_str_tolower(char *str, size_t length);
+ void $fastcall zend_str_tolower(char *str, size_t length);
", ffi_get_php_dll_name());
var_dump(trim(explode("\n",$zend->get_zend_version())[0]));