diff options
| author | deraadt <deraadt@NetBSD.org> | 1993-10-19 08:34:29 +0000 |
|---|---|---|
| committer | deraadt <deraadt@NetBSD.org> | 1993-10-19 08:34:29 +0000 |
| commit | 7be47c84518f8fff10ffe02378f64fc2b871b243 (patch) | |
| tree | 5ac749ecd7ef9e607e4db83a2344435afaf60f68 /lib/libc/stdlib | |
| parent | 78942d40e6ea5c2d5358310ea84a30f5b183ef99 (diff) | |
#if defined(hp300) || defined(sparc) || defined(amiga)
The knowledge about floating point format should really be pulled in
from somewhere better.
Diffstat (limited to 'lib/libc/stdlib')
| -rw-r--r-- | lib/libc/stdlib/strtod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index 8377f79eeb3..5ffa7b1fc50 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -1,6 +1,6 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)strtod.c 5.1 (Berkeley) 11/13/92";*/ -static char *rcsid = "$Id: strtod.c,v 1.4 1993/08/26 00:48:12 jtc Exp $"; +static char *rcsid = "$Id: strtod.c,v 1.5 1993/10/19 08:34:29 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /**************************************************************** @@ -92,7 +92,7 @@ static char *rcsid = "$Id: strtod.c,v 1.4 1993/08/26 00:48:12 jtc Exp $"; #ifdef i386 #define IEEE_8087 #endif -#ifdef hp300 +#if defined(hp300) || defined(sparc) || defined(amiga) #define IEEE_MC68k #endif #ifdef vax |
