diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-04-09 17:49:13 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-04-09 17:49:13 +0000 |
commit | 2ef4366f6467b81bc570be38699b6d73d17c5da6 (patch) | |
tree | 7fc0ae596a06f3bd5b077fe61d8b8cff534cfdbe /libm | |
parent | bf9b41aac43ec4fa8a03e3bd4914c6631d4d84d3 (diff) |
Add finite() to C89 math lib, since it is needed...
-Erik
Diffstat (limited to 'libm')
-rw-r--r-- | libm/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libm/Makefile b/libm/Makefile index 433d32470..b0821c82a 100644 --- a/libm/Makefile +++ b/libm/Makefile @@ -71,7 +71,8 @@ CSRC = w_acos.c w_asin.c s_atan.c w_atan2.c s_ceil.c s_cos.c \ w_sinh.c w_sqrt.c s_tan.c s_tanh.c CSRC+= s_expm1.c s_scalbn.c s_copysign.c e_acos.c e_asin.c e_atan2.c \ k_cos.c e_cosh.c e_exp.c e_fmod.c e_log.c e_log10.c e_pow.c \ - k_sin.c e_sinh.c e_sqrt.c k_tan.c e_rem_pio2.c k_rem_pio2.c + k_sin.c e_sinh.c e_sqrt.c k_tan.c e_rem_pio2.c k_rem_pio2.c \ + s_finite.c endif COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(COBJS) |