Skip to content

Commit 9da96c2

Browse files
committed
removed nearzero.c
1 parent d7d1d80 commit 9da96c2

File tree

4 files changed

+1
-61
lines changed

4 files changed

+1
-61
lines changed

ext/bcmath/config.m4

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

ext/bcmath/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.");

ext/bcmath/libbcmath/src/bcmath.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,6 @@ bool bc_is_zero(bc_num num);
117117

118118
bool 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-
122120
bool bc_is_neg(bc_num num);
123121

124122
void bc_rm_trailing_zeros(bc_num num);

ext/bcmath/libbcmath/src/nearzero.c

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)