From: Rasmus Lerdorf Date: Sun, 14 Jan 2001 16:30:22 +0000 (+0000) Subject: Export _Exec for extensions to use X-Git-Tag: php-4.0.5RC1~585 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5311bfa5c5f0d72be0c8b7ead00e30138f560863;p=php Export _Exec for extensions to use --- diff --git a/ext/standard/exec.c b/ext/standard/exec.c index 5a494e664e..1048cb9901 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -39,7 +39,7 @@ * If type==3, output will be printed binary, no lines will be saved or returned (passthru) * */ -static int _Exec(int type, char *cmd, pval *array, pval *return_value) +int _Exec(int type, char *cmd, pval *array, pval *return_value) { FILE *fp; char *buf, *tmp=NULL;