From fb1c77bd4f8a636ba47d720f8ca65fc6baae836d Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Fri, 17 Dec 1999 20:55:31 +0000 Subject: - Made PHP_VERSION and PHP_OS work again - More php3_ cleanup @- Restored the PHP_VERSION and PHP_OS constants (Zeev) --- ext/bcmath/bcmath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/bcmath/bcmath.c') diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c index e39f602445..5f1b1e71e9 100644 --- a/ext/bcmath/bcmath.c +++ b/ext/bcmath/bcmath.c @@ -36,12 +36,12 @@ function_entry bcmath_functions[] = { {NULL, NULL, NULL} }; -php3_module_entry bcmath_module_entry = { +zend_module_entry bcmath_module_entry = { "bcmath", bcmath_functions, NULL, NULL, PHP_RINIT(bcmath), PHP_RSHUTDOWN(bcmath), NULL, STANDARD_MODULE_PROPERTIES }; #if COMPILE_DL -php3_module_entry *get_module() { return &bcmath_module_entry; }; +zend_module_entry *get_module() { return &bcmath_module_entry; }; #endif #ifndef THREAD_SAFE -- cgit v1.2.1