]> granicus.if.org Git - php/commitdiff
Making _php_math_longtobase() and _php_math_basetolong() callable from DLL and SO...
authorFrank M. Kromann <fmk@php.net>
Fri, 27 Oct 2000 20:26:16 +0000 (20:26 +0000)
committerFrank M. Kromann <fmk@php.net>
Fri, 27 Oct 2000 20:26:16 +0000 (20:26 +0000)
ext/standard/math.c

index 0fb3d3cf3277026dd552f8bddda882807617380e..e6ee1fd03d609a0bf5cff53cb37385df26da0316 100644 (file)
@@ -390,7 +390,7 @@ PHP_FUNCTION(rad2deg)
 /*
  * Convert a string representation of a base(2-36) number to a long.
  */
-static long
+PHPAPI long
 _php_math_basetolong(zval *arg, int base) {
        long mult = 1, num = 0, digit;
        int i;
@@ -427,7 +427,7 @@ _php_math_basetolong(zval *arg, int base) {
  * Convert a long to a string containing a base(2-36) representation of
  * the number.
  */
-static char *
+PHPAPI char *
 _php_math_longtobase(zval *arg, int base)
 {
        static char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz";