diff options
author | Stig Bakken <ssb@php.net> | 2001-10-11 23:33:59 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2001-10-11 23:33:59 +0000 |
commit | 689252082c2660e2b6fddc674047922d8b2c7845 (patch) | |
tree | a6d3a9bff0ae6f205098017ecb84ebb1b1f74460 /ext/bcmath | |
parent | 405142087ca9f49f6f480e29541bb3fe05847fe8 (diff) | |
download | php-git-689252082c2660e2b6fddc674047922d8b2c7845.tar.gz |
* zend_module_entry change: apino, debug and zts are moved first,
see README.EXTENSIONS file for upgrade help.
@Introduced extension version numbers (Stig)
Diffstat (limited to 'ext/bcmath')
-rw-r--r-- | ext/bcmath/bcmath.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c index 0cb4f11a2b..95efd3a0c4 100644 --- a/ext/bcmath/bcmath.c +++ b/ext/bcmath/bcmath.c @@ -44,13 +44,15 @@ function_entry bcmath_functions[] = { }; zend_module_entry bcmath_module_entry = { + STANDARD_MODULE_HEADER, "bcmath", - bcmath_functions, + bcmath_functions, PHP_MINIT(bcmath), PHP_MSHUTDOWN(bcmath), PHP_RINIT(bcmath), NULL, PHP_MINFO(bcmath), + NO_VERSION_YET, STANDARD_MODULE_PROPERTIES }; |