summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2001-01-14 16:30:22 +0000
committerRasmus Lerdorf <rasmus@php.net>2001-01-14 16:30:22 +0000
commit5311bfa5c5f0d72be0c8b7ead00e30138f560863 (patch)
treeca4bc146930dcdc658120729f6ab8c4db5c49cc9
parent6b84fb1cde6d52e638d1f46c7ce60f9f711c190f (diff)
downloadphp-git-5311bfa5c5f0d72be0c8b7ead00e30138f560863.tar.gz
Export _Exec for extensions to use
-rw-r--r--ext/standard/exec.c2
1 files changed, 1 insertions, 1 deletions
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;