diff options
Diffstat (limited to 'ext/standard/exec.c')
-rw-r--r-- | ext/standard/exec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/exec.c b/ext/standard/exec.c index 9dcf4b149d..e3f6658315 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -165,7 +165,7 @@ err: } /* }}} */ -static void php_exec_ex(INTERNAL_FUNCTION_PARAMETERS, int mode) +static void php_exec_ex(INTERNAL_FUNCTION_PARAMETERS, int mode) /* {{{ */ { char *cmd; int cmd_len; @@ -211,6 +211,7 @@ static void php_exec_ex(INTERNAL_FUNCTION_PARAMETERS, int mode) efree(cmd); } } +/* }}} */ /* {{{ proto string exec(string command [, array &output [, int &return_value]]) U Execute an external program */ |