summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-06-16 15:19:47 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-06-16 15:19:47 +0000
commit99db770f28ad9c973520298bcf730107fdc9a234 (patch)
treeda42375d29dae44deba7724b5c82ca2122b69908
parent552b9d4279039986bd175e24c5994df22688c1a6 (diff)
in case this is ever used by sparc
-rw-r--r--gnu/usr.bin/gas/atof-generic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/gas/atof-generic.c b/gnu/usr.bin/gas/atof-generic.c
index 663389f622e..3e5fbee3661 100644
--- a/gnu/usr.bin/gas/atof-generic.c
+++ b/gnu/usr.bin/gas/atof-generic.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: atof-generic.c,v 1.2 1998/02/15 18:48:41 niklas Exp $ */
+/* $OpenBSD: atof-generic.c,v 1.3 1999/06/16 15:19:46 deraadt Exp $ */
/* atof_generic.c - turn a string of digits into a Flonum
Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
@@ -20,7 +20,7 @@
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef lint
-static char rcsid[] = "$OpenBSD: atof-generic.c,v 1.2 1998/02/15 18:48:41 niklas Exp $";
+static char rcsid[] = "$OpenBSD: atof-generic.c,v 1.3 1999/06/16 15:19:46 deraadt Exp $";
#endif
#include <ctype.h>
@@ -31,7 +31,7 @@ static char rcsid[] = "$OpenBSD: atof-generic.c,v 1.2 1998/02/15 18:48:41 niklas
#ifdef __GNUC__
#define alloca __builtin_alloca
#else
-#ifdef sparc
+#ifdef __sparc__
#include <alloca.h>
#endif
#endif