Use the merged strtod.c everywhere. This has been tested on alpha and

ia64.
This commit is contained in:
peter 2001-12-02 18:27:40 +00:00
parent c3aedf8ced
commit 2614d1c3e1

View File

@ -9,19 +9,10 @@ MISRCS+=abort.c abs.c atexit.c atof.c atoi.c atol.c atoll.c \
getsubopt.c hcreate.c heapsort.c imaxabs.c imaxdiv.c \
labs.c ldiv.c llabs.c lldiv.c malloc.c merge.c putenv.c \
qsort.c radixsort.c rand.c random.c reallocf.c realpath.c \
setenv.c strfmon.c strhash.c strtoimax.c strtol.c strtoll.c \
setenv.c strfmon.c strhash.c strtod.c strtoimax.c strtol.c strtoll.c \
strtoq.c strtoul.c strtoull.c strtoumax.c strtouq.c system.c \
tdelete.c tfind.c tsearch.c twalk.c
.if ${MACHINE_ARCH} == "alpha"
# XXX Temporary until the assumption that a long is 32-bits is resolved
# XXX FreeBSD's code. NetBSD kludged this with Long = int32_t and
# XXX ULong = u_int32_t
SRCS+= netbsd_strtod.c
.else
SRCS+= strtod.c
.endif
# machine-dependent stdlib sources
.if exists(${.CURDIR}/../libc/${MACHINE_ARCH}/stdlib/Makefile.inc)
.include "${.CURDIR}/../libc/${MACHINE_ARCH}/stdlib/Makefile.inc"