From 39f49db4017589ec51cf3a48c5c0e2e63bf07242 Mon Sep 17 00:00:00 2001 From: mark Date: Fri, 16 Feb 1996 21:14:03 +0000 Subject: [PATCH] Define IEEEFP if we are compiling for the arm32. --- lib/libc/rpc/xdr_float.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/libc/rpc/xdr_float.c b/lib/libc/rpc/xdr_float.c index 84315d4b9075..448f4bfd86b1 100644 --- a/lib/libc/rpc/xdr_float.c +++ b/lib/libc/rpc/xdr_float.c @@ -1,4 +1,4 @@ -/* $NetBSD: xdr_float.c,v 1.9 1995/06/05 11:48:26 pk Exp $ */ +/* $NetBSD: xdr_float.c,v 1.10 1996/02/16 21:14:03 mark Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for @@ -32,7 +32,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)xdr_float.c 1.12 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)xdr_float.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$NetBSD: xdr_float.c,v 1.9 1995/06/05 11:48:26 pk Exp $"; +static char *rcsid = "$NetBSD: xdr_float.c,v 1.10 1996/02/16 21:14:03 mark Exp $"; #endif /* @@ -57,7 +57,8 @@ static char *rcsid = "$NetBSD: xdr_float.c,v 1.9 1995/06/05 11:48:26 pk Exp $"; */ #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ - defined(__mips__) || defined(__ns32k__) || defined(__alpha__) + defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \ + defined(__arm32__) #include #define IEEEFP #endif