summaryrefslogtreecommitdiff
path: root/sapi/cli/cli.h
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/cli/cli.h')
-rw-r--r--sapi/cli/cli.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sapi/cli/cli.h b/sapi/cli/cli.h
index 8840ac01cc..e49a203821 100644
--- a/sapi/cli/cli.h
+++ b/sapi/cli/cli.h
@@ -1,6 +1,6 @@
/*
+----------------------------------------------------------------------+
- | PHP Version 5 |
+ | PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2014 The PHP Group |
+----------------------------------------------------------------------+
@@ -30,11 +30,11 @@
#endif
-extern PHP_CLI_API size_t sapi_cli_single_write(const char *str, php_size_t str_length TSRMLS_DC);
+extern PHP_CLI_API size_t sapi_cli_single_write(const char *str, size_t str_length TSRMLS_DC);
typedef struct {
- php_size_t (*cli_shell_write)(const char *str, php_size_t str_length TSRMLS_DC);
- php_size_t (*cli_shell_ub_write)(const char *str, php_size_t str_length TSRMLS_DC);
+ size_t (*cli_shell_write)(const char *str, size_t str_length TSRMLS_DC);
+ size_t (*cli_shell_ub_write)(const char *str, size_t str_length TSRMLS_DC);
int (*cli_shell_run)(TSRMLS_D);
} cli_shell_callbacks_t;