summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/netbsd_strtod.c
Commit message (Collapse)AuthorAgeFilesLines
* MFC: Update unused __dtoa prototypes to match reality.Tor Egge2001-03-021-1/+1
| | | | Notes: svn path=/stable/4/; revision=73351
* MFC: Remove freelists managed by Balloc/Bfree. Change __dtoa internal API.Tor Egge2001-02-191-33/+12
| | | | | | | PR: 15070 Notes: svn path=/stable/4/; revision=72711
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* This is a hack to workaround source that is coded to use long variablesJohn Birrell1998-05-081-0/+2517
but also assumes that they are 32-bits. This is one place where I don't think it is appropriate to change 'long' to 'int'. I don't see why the code couldn't be fixed so that using natural long variables does the right thing. It's spaggetti code so it'll take some effort. Obviously NetBSD thought so too because they change 'long' to 'int32_t' etc and left it at that. As a temporary measure FreeBSD/Alpha can use the NetBSD code and put this on the list of things to fix. Notes: svn path=/head/; revision=35837