summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-05-29 02:01:04 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-05-29 02:01:04 +0000
commitba34ded03b462b7ce440edfef79fdec941252b5b (patch)
tree8a58efb3a6cc01de3fa59322d4feabbbd61790e8 /usr.bin
parent2787f0991af468f2576f659aefabfa15fd4f7b0f (diff)
more parts of netbsd compat that go away
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/kdump/kdump.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c
index 0de8114c8ae..602ce71b63b 100644
--- a/usr.bin/kdump/kdump.c
+++ b/usr.bin/kdump/kdump.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kdump.c,v 1.38 2007/03/03 23:36:15 jmc Exp $ */
+/* $OpenBSD: kdump.c,v 1.39 2007/05/29 02:01:03 deraadt Exp $ */
/*-
* Copyright (c) 1988, 1993
@@ -39,7 +39,7 @@ static const char copyright[] =
#if 0
static char sccsid[] = "@(#)kdump.c 8.4 (Berkeley) 4/28/95";
#endif
-static const char rcsid[] = "$OpenBSD: kdump.c,v 1.38 2007/03/03 23:36:15 jmc Exp $";
+static const char rcsid[] = "$OpenBSD: kdump.c,v 1.39 2007/05/29 02:01:03 deraadt Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -77,7 +77,6 @@ pid_t pid = -1;
#include <compat/bsdos/bsdos_syscall.h>
#include <compat/freebsd/freebsd_syscall.h>
-#include <compat/netbsd/netbsd_syscall.h>
#if defined(__hppa__) || defined(__m68k__)
#include <compat/hpux/hpux_syscall.h>
#endif
@@ -101,7 +100,6 @@ pid_t pid = -1;
#include <compat/bsdos/bsdos_syscalls.c>
#include <compat/freebsd/freebsd_syscalls.c>
-#include <compat/netbsd/netbsd_syscalls.c>
#if defined(__hppa__) || defined(__m68k__)
#include <compat/hpux/hpux_syscalls.c>
#endif
@@ -140,7 +138,6 @@ static struct emulation emulations[] = {
{ "ultrix", ultrix_syscallnames, ULTRIX_SYS_MAXSYSCALL },
{ "bsdos", bsdos_syscallnames, BSDOS_SYS_MAXSYSCALL },
{ "freebsd", freebsd_syscallnames, FREEBSD_SYS_MAXSYSCALL },
- { "netbsd", netbsd_syscallnames, NETBSD_SYS_MAXSYSCALL },
{ NULL, NULL, NULL }
};