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
16
16
libbcmath/src/long2num.c
17
17
libbcmath/src/init.c
18
18
libbcmath/src/int2num.c
19
- libbcmath/src/nearzero.c
20
19
libbcmath/src/neg.c
21
20
libbcmath/src/num2long.c
22
21
libbcmath/src/num2str.c
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ if (PHP_BCMATH == "yes") {
7
7
ADD_SOURCES ( "ext/bcmath/libbcmath/src" , "add.c div.c init.c neg.c \
8
8
raisemod.c sub.c compare.c divmod.c int2num.c long2num.c \
9
9
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 \
11
11
round.c convert.c" , "bcmath" ) ;
12
12
13
13
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);
117
117
118
118
bool bc_is_zero_for_scale (bc_num num , size_t scale );
119
119
120
- bool bc_is_near_zero (bc_num num , size_t scale );
121
-
122
120
bool bc_is_neg (bc_num num );
123
121
124
122
void 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