summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2000-02-08 18:03:19 +0000
committerAndrei Zmievski <andrei@php.net>2000-02-08 18:03:19 +0000
commita7063b1aee0d8a439f0db1bf68fb56f052efd810 (patch)
tree4a2f18cc84adf7d28e0c66bfdb246edce9a80da7
parent0f1c2504b123150f81042517aa035a48bc555d91 (diff)
downloadphp-git-a7063b1aee0d8a439f0db1bf68fb56f052efd810.tar.gz
New function notice.
-rw-r--r--NEWS1
-rw-r--r--sapi/apache/mod_php4.c2
-rw-r--r--sapi/apache/mod_php4.h1
3 files changed, 2 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index ed9682f49a..38522a4907 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@ PHP 4.0 NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ?? ????, Version 4.0 Beta 4
+- Added strncmp() function, courtesy of Walter. (Andrei)
- Made the output of var_dump() more informative. (Thies)
- Fixed some OCIBindByName() problems. (Thies)
- Protect the ISAPI module against exceptions. Stack overflows in scripts are
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c
index 1485b3801d..74bba3467e 100644
--- a/sapi/apache/mod_php4.c
+++ b/sapi/apache/mod_php4.c
@@ -58,8 +58,6 @@
# include "mod_dav.h"
#endif
-extern zend_module_entry apache_module_entry;
-
PHPAPI int apache_php_module_main(request_rec *r, int fd, int display_source_mode SLS_DC);
void php_save_umask(void);
void php_restore_umask(void);
diff --git a/sapi/apache/mod_php4.h b/sapi/apache/mod_php4.h
index f2c00806fc..55d1b27eb7 100644
--- a/sapi/apache/mod_php4.h
+++ b/sapi/apache/mod_php4.h
@@ -33,6 +33,7 @@ typedef struct {
long xbithack;
} php_apache_info_struct;
+extern zend_module_entry apache_module_entry;
extern php_apache_info_struct php_apache_info;
#if MSVC5