From ed3d3458eff834d82b01f4018f7750fba1449a07 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 14 Mar 2002 06:52:35 +0000 Subject: 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 --- libc/stdlib/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/stdlib/Makefile') 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)) -- cgit v1.2.3