diff options
author | Roland McGrath <roland@gnu.org> | 1996-07-05 23:55:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-07-05 23:55:36 +0000 |
commit | 61c7fd70ca07fbb323480424cba73d5a18833722 (patch) | |
tree | b042e3b1984a2016e56a50a314ee31dc8f46edcd /math | |
parent | 7f4e9608228a6e2e1af62abe576599cd4588d778 (diff) | |
download | glibc-61c7fd70ca07fbb323480424cba73d5a18833722.zip glibc-61c7fd70ca07fbb323480424cba73d5a18833722.tar.gz glibc-61c7fd70ca07fbb323480424cba73d5a18833722.tar.bz2 |
Fri Jul 5 12:22:51 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* math/Makefile (calls): Add s_ldexp, s_frexp, s_modf.
These functions are traditionally duplicated in libc and libm.
Go with the flow.
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/Makefile b/math/Makefile index 14c27a4..fd19e31 100644 --- a/math/Makefile +++ b/math/Makefile @@ -55,7 +55,7 @@ long-m-routines = $(patsubst %_rl,%l_r,$(libm-calls:=l)) # not ready yet # These functions are in libc instead of libm because __printf_fp # calls them, so any program using printf will need them linked in, # and we don't want to have to link every program with -lm. -calls = s_isinf s_isnan +calls = s_isinf s_isnan s_frexp s_ldexp s_modf routines = $(calls) $(calls:=f) $(long-c-$(long-double-fcts)) long-c-yes = $(calls:=l) distribute += $(long-c-yes:=.c) |