summaryrefslogtreecommitdiff
path: root/ext/standard/exec.h
diff options
context:
space:
mode:
authorEdin Kadribasic <edink@php.net>2005-09-24 15:22:32 +0000
committerEdin Kadribasic <edink@php.net>2005-09-24 15:22:32 +0000
commitba8a8d9f25b16540d4d46df8129e6ff9f54cf010 (patch)
tree032a0654ac3c445401be58154fda288409606938 /ext/standard/exec.h
parent4566f4877728818e132aa20f68b77fb66a75fe02 (diff)
downloadphp-git-ba8a8d9f25b16540d4d46df8129e6ff9f54cf010.tar.gz
Allow php extensions to use php_escape_shell_cmd() and php_escape_shell_arg(), needed for mbstring
Diffstat (limited to 'ext/standard/exec.h')
-rw-r--r--ext/standard/exec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/exec.h b/ext/standard/exec.h
index 26794b7bb8..d8c4b198c5 100644
--- a/ext/standard/exec.h
+++ b/ext/standard/exec.h
@@ -34,8 +34,8 @@ PHP_FUNCTION(proc_terminate);
PHP_FUNCTION(proc_nice);
PHP_MINIT_FUNCTION(proc_open);
-char *php_escape_shell_cmd(char *);
-char *php_escape_shell_arg(char *);
+PHPAPI char *php_escape_shell_cmd(char *);
+PHPAPI char *php_escape_shell_arg(char *);
int php_exec(int type, char *cmd, pval *array, pval *return_value TSRMLS_DC);
#endif /* EXEC_H */