summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>1996-12-21 21:08:18 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>1996-12-21 21:08:18 +0000
commit2ff971bbb35bb55afb97319de683e14b2dbca414 (patch)
tree05b23209bdeedaf6b94c8758c3c6014b24d64cd9 /lib
parent44fe42f74608961cad277eeaff69d1cf74e09571 (diff)
Change to support the powerpc port. To bad this define isn't put in
a machine header, such as machine/endian.h so that every new architecture would not have to modify this file.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/rpc/xdr_float.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/xdr_float.c b/lib/libc/rpc/xdr_float.c
index 3b200ddb1b3..1f776664331 100644
--- a/lib/libc/rpc/xdr_float.c
+++ b/lib/libc/rpc/xdr_float.c
@@ -28,7 +28,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: xdr_float.c,v 1.4 1996/08/19 08:32:03 tholo Exp $";
+static char *rcsid = "$OpenBSD: xdr_float.c,v 1.5 1996/12/21 21:08:17 rahnds Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -54,7 +54,7 @@ static char *rcsid = "$OpenBSD: xdr_float.c,v 1.4 1996/08/19 08:32:03 tholo Exp
#if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \
defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \
- defined(__arm32__)
+ defined(__arm32__) || defined(__ppc__)
#include <machine/endian.h>
#define IEEEFP
#endif