diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-03-25 21:24:05 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-03-25 21:24:05 +0000 |
commit | 8e8e259a84c1caf0c4a930a74b78e732eed810c6 (patch) | |
tree | fa6785218c24666f6911f069c20e50df82b476b3 /libm/Makefile | |
parent | 84365ef5e9ae00d46785d14b99a3533a8cf25476 (diff) |
Implement sqrtf(), needed for libstdc++ on arm
-Erik
Diffstat (limited to 'libm/Makefile')
-rw-r--r-- | libm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/Makefile b/libm/Makefile index a6e8e26a9..433d32470 100644 --- a/libm/Makefile +++ b/libm/Makefile @@ -62,7 +62,7 @@ CSRC = e_acos.c e_acosh.c e_asin.c e_atan2.c e_atanh.c e_cosh.c\ w_cosh.c w_drem.c w_exp.c w_fmod.c w_gamma.c w_gamma_r.c\ w_hypot.c w_j0.c w_j1.c w_jn.c w_lgamma.c w_lgamma_r.c\ w_log.c w_log10.c w_pow.c w_remainder.c w_scalb.c w_sinh.c\ - w_sqrt.c fpmacros.c + w_sqrt.c w_sqrtf.c fpmacros.c else # This list of math functions was taken from POSIX/IEEE 1003.1b-1993 CSRC = w_acos.c w_asin.c s_atan.c w_atan2.c s_ceil.c s_cos.c \ |