diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-03-14 06:52:35 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-03-14 06:52:35 +0000 |
commit | ed3d3458eff834d82b01f4018f7750fba1449a07 (patch) | |
tree | 75ec65304d67db73c68e099e8614ac44770178b6 /libc/stdlib/Makefile | |
parent | 39d05a3300773b053177e92b626575fd7bea18b9 (diff) |
Add implementations of strtof() and strtold(). These are a bit
lame, since internally I'm just using strtod, but that keeps things
small, and has the side effect of making these easy to write.
-Erik
Diffstat (limited to 'libc/stdlib/Makefile')
-rw-r--r-- | libc/stdlib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile index 32c24a0d2..8d7f949df 100644 --- a/libc/stdlib/Makefile +++ b/libc/stdlib/Makefile @@ -44,7 +44,7 @@ CSRC+= drand48.c drand48-iter.c drand48_r.c erand48.c erand48_r.c \ jrand48.c jrand48_r.c lrand48.c lrand48_r.c mrand48.c mrand48_r.c \ nrand48.c nrand48_r.c rand_r.c srand48.c srand48_r.c ifeq ($(HAS_FLOATING_POINT),true) - CSRC += strtod.c + CSRC += strtod.c strtof.c strtold.c endif COBJS=$(patsubst %.c,%.o, $(CSRC)) |