summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/netbsd_strtod.c
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of unused anymore file! Alpha works fine with our strtod() now.Alexey Zelkin2001-12-071-2496/+0
| | | | Notes: svn path=/head/; revision=87501
* Update unused __dtoa prototypes to match reality.Tor Egge2001-02-251-1/+1
| | | | Notes: svn path=/head/; revision=73021
* Remove freelists managed by Balloc/Bfree.Tor Egge2001-02-151-33/+12
| | | | | | | | | | | Change __dtoa to not free the string it allocated the previous time it was called. The caller now frees the string after usage if appropiate. PR: 15070 Reviewed by: deischen Notes: svn path=/head/; revision=72523
* Backout previous commit. Use of spinlocks was not approved.Tor Egge2001-02-091-22/+18
| | | | | | | PR: 15070 Notes: svn path=/head/; revision=72254
* Protect freelists managed by Balloc/Bfree with a spinlock.Tor Egge2001-02-081-18/+22
| | | | | | | | | | Change __dtoa to not free the string it allocated the previous time it was called. The caller now frees the string after usage if appropiate. PR: 15070 Notes: svn path=/head/; revision=72179
* $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