diff options
author | peter <peter@FreeBSD.org> | 2001-12-02 18:27:40 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-12-02 18:27:40 +0000 |
commit | 2614d1c3e11a8df29494ad45fb7b2f76357bca47 (patch) | |
tree | 09c67d722dfe4af7b3926fd4883c18a1faa56ecf /lib/libc/stdlib/Makefile.inc | |
parent | c3aedf8ced2dcd6708a9e4ff0c4e4761f7cface3 (diff) | |
download | FreeBSD-src-2614d1c3e11a8df29494ad45fb7b2f76357bca47.zip FreeBSD-src-2614d1c3e11a8df29494ad45fb7b2f76357bca47.tar.gz |
Use the merged strtod.c everywhere. This has been tested on alpha and
ia64.
Diffstat (limited to 'lib/libc/stdlib/Makefile.inc')
-rw-r--r-- | lib/libc/stdlib/Makefile.inc | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/libc/stdlib/Makefile.inc b/lib/libc/stdlib/Makefile.inc index ed88554..19200b9 100644 --- a/lib/libc/stdlib/Makefile.inc +++ b/lib/libc/stdlib/Makefile.inc @@ -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" |