summaryrefslogtreecommitdiff
path: root/usr.bin/kdump/kdump.c
diff options
context:
space:
mode:
authorPhilip Guenthe <guenther@cvs.openbsd.org>2010-06-29 20:30:34 +0000
committerPhilip Guenthe <guenther@cvs.openbsd.org>2010-06-29 20:30:34 +0000
commit73803e6455f42883135a7c19e1d118ff952fc86e (patch)
tree782ae3c472e254b122dd0c368eb8a516f85ad9e2 /usr.bin/kdump/kdump.c
parentfedf3c845cad7b49fefb26ab7ee064f1da678141 (diff)
Remove COMPAT_HPUX. No one wanted to support it and its fewmets were
blocking other cleanups ok miod@
Diffstat (limited to 'usr.bin/kdump/kdump.c')
-rw-r--r--usr.bin/kdump/kdump.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c
index 6b96df9d80b..1b90a9cef42 100644
--- a/usr.bin/kdump/kdump.c
+++ b/usr.bin/kdump/kdump.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kdump.c,v 1.42 2010/06/29 17:35:15 tedu Exp $ */
+/* $OpenBSD: kdump.c,v 1.43 2010/06/29 20:30:33 guenther Exp $ */
/*-
* Copyright (c) 1988, 1993
@@ -64,9 +64,6 @@ pid_t pid = -1;
#include <compat/bsdos/bsdos_syscall.h>
#include <compat/freebsd/freebsd_syscall.h>
-#if defined(__hppa__) || defined(__m68k__)
-#include <compat/hpux/hpux_syscall.h>
-#endif
#include <compat/ibcs2/ibcs2_syscall.h>
#include <compat/linux/linux_syscall.h>
#include <compat/osf1/osf1_syscall.h>
@@ -86,9 +83,6 @@ pid_t pid = -1;
#include <compat/bsdos/bsdos_syscalls.c>
#include <compat/freebsd/freebsd_syscalls.c>
-#if defined(__hppa__) || defined(__m68k__)
-#include <compat/hpux/hpux_syscalls.c>
-#endif
#include <compat/ibcs2/ibcs2_syscalls.c>
#include <compat/linux/linux_syscalls.c>
#include <compat/osf1/osf1_syscalls.c>
@@ -112,9 +106,6 @@ struct emulation {
static struct emulation emulations[] = {
{ "native", syscallnames, SYS_MAXSYSCALL },
-#if defined(__hppa__) || defined(__m68k__)
- { "hpux", hpux_syscallnames, HPUX_SYS_MAXSYSCALL },
-#endif
{ "ibcs2", ibcs2_syscallnames, IBCS2_SYS_MAXSYSCALL },
{ "linux", linux_syscallnames, LINUX_SYS_MAXSYSCALL },
{ "osf1", osf1_syscallnames, OSF1_SYS_MAXSYSCALL },