File tree Expand file tree Collapse file tree 4 files changed +1
-61
lines changed Expand file tree Collapse file tree 4 files changed +1
-61
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ if test "$PHP_BCMATH" != "no"; then
1616 libbcmath/src/long2num.c
1717 libbcmath/src/init.c
1818 libbcmath/src/int2num.c
19- libbcmath/src/nearzero.c
2019 libbcmath/src/neg.c
2120 libbcmath/src/num2long.c
2221 libbcmath/src/num2str.c
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ if (PHP_BCMATH == "yes") {
77 ADD_SOURCES ( "ext/bcmath/libbcmath/src" , "add.c div.c init.c neg.c \
88 raisemod.c sub.c compare.c divmod.c int2num.c long2num.c \
99 num2long.c recmul.c sqrt.c zero.c doaddsub.c \
10- floor_or_ceil.c nearzero.c num2str.c raise.c rmzero.c str2num.c \
10+ floor_or_ceil.c num2str.c raise.c rmzero.c str2num.c \
1111 round.c convert.c" , "bcmath" ) ;
1212
1313 AC_DEFINE ( 'HAVE_BCMATH' , 1 , "Define to 1 if the PHP extension 'bcmath' is available." ) ;
Original file line number Diff line number Diff line change @@ -117,8 +117,6 @@ bool bc_is_zero(bc_num num);
117117
118118bool bc_is_zero_for_scale (bc_num num , size_t scale );
119119
120- bool bc_is_near_zero (bc_num num , size_t scale );
121-
122120bool bc_is_neg (bc_num num );
123121
124122void bc_rm_trailing_zeros (bc_num num );
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments