summaryrefslogtreecommitdiff
path: root/libc/stdlib/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-03-14 06:52:35 +0000
committerEric Andersen <andersen@codepoet.org>2002-03-14 06:52:35 +0000
commited3d3458eff834d82b01f4018f7750fba1449a07 (patch)
tree75ec65304d67db73c68e099e8614ac44770178b6 /libc/stdlib/Makefile
parent39d05a3300773b053177e92b626575fd7bea18b9 (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/Makefile2
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))