From bdeb220f48825642f84cdbf3ff23a30613c92e86 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sat, 13 Dec 2014 23:06:14 +0100 Subject: first shot remove TSRMLS_* things --- sapi/cli/cli.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sapi/cli/cli.h') diff --git a/sapi/cli/cli.h b/sapi/cli/cli.h index e49a203821..30dc4fdfa0 100644 --- a/sapi/cli/cli.h +++ b/sapi/cli/cli.h @@ -30,12 +30,12 @@ #endif -extern PHP_CLI_API size_t sapi_cli_single_write(const char *str, size_t str_length TSRMLS_DC); +extern PHP_CLI_API size_t sapi_cli_single_write(const char *str, size_t str_length); typedef struct { - 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); + size_t (*cli_shell_write)(const char *str, size_t str_length); + size_t (*cli_shell_ub_write)(const char *str, size_t str_length); + int (*cli_shell_run)(void); } cli_shell_callbacks_t; extern PHP_CLI_API cli_shell_callbacks_t *php_cli_get_shell_callbacks(); -- cgit v1.2.1