Skip to content

Commit c08bd96

Browse files
committed
Remove the non-standard finite() function.
1 parent ae1e0c3 commit c08bd96

6 files changed

Lines changed: 1 addition & 92 deletions

File tree

i387/Make.files

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$(CUR_SRCS) = e_exp.S e_fmod.S e_log.S e_log10.S \
22
e_remainder.S e_sqrt.S s_ceil.S s_copysign.S \
3-
s_finite.S s_floor.S s_llrint.S s_logb.S s_lrint.S \
3+
s_floor.S s_llrint.S s_logb.S s_lrint.S \
44
s_remquo.S s_rint.S s_tan.S s_trunc.S
55

66
ifneq ($(OS), WINNT)

i387/s_finite.S

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

include/openlibm_math.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,6 @@ double trunc(double);
303303
* BSD math library entry points
304304
*/
305305
#if __BSD_VISIBLE
306-
int finite(double) __pure2;
307306
int isnanf(float) __pure2;
308307

309308
/*
@@ -390,7 +389,6 @@ float fminf(float, float) __pure2;
390389
*/
391390
#if __BSD_VISIBLE
392391
float dremf(float, float);
393-
int finitef(float) __pure2;
394392
float j0f(float);
395393
float j1f(float);
396394
float jnf(int, float);

src/Make.files

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ $(CUR_SRCS) = common.c \
1515
s_copysign.c s_copysignf.c s_cos.c s_cosf.c \
1616
s_csqrt.c s_csqrtf.c s_erf.c s_erff.c \
1717
s_exp2.c s_exp2f.c s_expm1.c s_expm1f.c s_fabs.c s_fabsf.c s_fdim.c \
18-
s_finite.c s_finitef.c \
1918
s_floor.c s_floorf.c s_fma.c s_fmaf.c \
2019
s_fmax.c s_fmaxf.c s_fmin.c \
2120
s_fminf.c s_fpclassify.c \

src/s_finite.c

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

src/s_finitef.c

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

0 commit comments

Comments
 (0)