summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrahnds <rahnds@openbsd.org>1997-01-09 03:18:58 +0000
committerrahnds <rahnds@openbsd.org>1997-01-09 03:18:58 +0000
commit592c417b814a7a9c8253e3e64efa27f7ee83d20e (patch)
tree86fbb661adad479f2fad4aeb388954c7d45112c8
parentsupport resident page count. (diff)
downloadwireguard-openbsd-592c417b814a7a9c8253e3e64efa27f7ee83d20e.tar.xz
wireguard-openbsd-592c417b814a7a9c8253e3e64efa27f7ee83d20e.zip
port is powerpc not, ppc.
Make the defines so.
-rw-r--r--lib/libc/stdlib/strtod.c4
-rw-r--r--usr.bin/xlint/lint1/param.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c
index 002654f8e1d..5ee50867a9d 100644
--- a/lib/libc/stdlib/strtod.c
+++ b/lib/libc/stdlib/strtod.c
@@ -90,12 +90,12 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: strtod.c,v 1.7 1996/12/21 21:14:44 rahnds Exp $";
+static char *rcsid = "$OpenBSD: strtod.c,v 1.8 1997/01/09 03:19:01 rahnds Exp $";
#endif /* LIBC_SCCS and not lint */
#if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \
defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \
- defined(__ppc__)
+ defined(__powerpc__)
#include <sys/types.h>
#if BYTE_ORDER == BIG_ENDIAN
#define IEEE_BIG_ENDIAN
diff --git a/usr.bin/xlint/lint1/param.h b/usr.bin/xlint/lint1/param.h
index d1d68cf0c21..8d909e3e5db 100644
--- a/usr.bin/xlint/lint1/param.h
+++ b/usr.bin/xlint/lint1/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.5 1996/12/21 21:16:43 rahnds Exp $ */
+/* $OpenBSD: param.h,v 1.6 1997/01/09 03:18:58 rahnds Exp $ */
/* $NetBSD: param.h,v 1.6 1996/04/01 21:47:57 mark Exp $ */
/*
@@ -85,7 +85,7 @@
#elif __arm32__
#define PTRDIFF_IS_LONG 0
#define SIZEOF_IS_ULONG 0
-#elif __ppc__
+#elif __powerpc__
#define PTRDIFF_IS_LONG 0
#define SIZEOF_IS_ULONG 0
#else