rasmus          Sun Jan 14 08:30:22 2001 EDT

  Modified files:              
    /php4/ext/standard  exec.c 
  Log:
  Export _Exec for extensions to use
  
  
Index: php4/ext/standard/exec.c
diff -u php4/ext/standard/exec.c:1.47 php4/ext/standard/exec.c:1.48
--- php4/ext/standard/exec.c:1.47       Sat Jan 13 13:52:09 2001
+++ php4/ext/standard/exec.c    Sun Jan 14 08:30:22 2001
@@ -15,7 +15,7 @@
    | Author: Rasmus Lerdorf                                               |
    +----------------------------------------------------------------------+
  */
-/* $Id: exec.c,v 1.47 2001/01/13 21:52:09 derick Exp $ */
+/* $Id: exec.c,v 1.48 2001/01/14 16:30:22 rasmus Exp $ */
 
 #include <stdio.h>
 #include "php.h"
@@ -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;



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to