diff options
author | Sascha Schumann <sas@php.net> | 1999-05-21 10:06:25 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-05-21 10:06:25 +0000 |
commit | b57dc275950b228f2399990471c4f22b7d154c6c (patch) | |
tree | a89fe99e356b218591b0b0b392862e0b9ddd4e7e /ext/bcmath/php3_bcmath.h | |
parent | 4fe8fe715e4347a4063a57e1a9fd6dc013ca9ee0 (diff) | |
download | php-git-b57dc275950b228f2399990471c4f22b7d154c6c.tar.gz |
- run ext sources through conv_proto
- add necessary phpext_*_ptr
Diffstat (limited to 'ext/bcmath/php3_bcmath.h')
-rw-r--r-- | ext/bcmath/php3_bcmath.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/bcmath/php3_bcmath.h b/ext/bcmath/php3_bcmath.h index 8656f83339..062d7fe8fd 100644 --- a/ext/bcmath/php3_bcmath.h +++ b/ext/bcmath/php3_bcmath.h @@ -45,15 +45,15 @@ extern php3_module_entry bcmath_module_entry; extern int php3_rinit_bcmath(INIT_FUNC_ARGS); extern int php3_rend_bcmath(SHUTDOWN_FUNC_ARGS); -extern void php3_bcmath_add(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_bcmath_sub(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_bcmath_mul(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_bcmath_div(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_bcmath_mod(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_bcmath_pow(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_bcmath_sqrt(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_bcmath_comp(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_bcmath_set_scale(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(bcmath_add); +PHP_FUNCTION(bcmath_sub); +PHP_FUNCTION(bcmath_mul); +PHP_FUNCTION(bcmath_div); +PHP_FUNCTION(bcmath_mod); +PHP_FUNCTION(bcmath_pow); +PHP_FUNCTION(bcmath_sqrt); +PHP_FUNCTION(bcmath_comp); +PHP_FUNCTION(bcmath_set_scale); #else |