From 5311bfa5c5f0d72be0c8b7ead00e30138f560863 Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Sun, 14 Jan 2001 16:30:22 +0000 Subject: [PATCH] Export _Exec for extensions to use --- ext/standard/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1