summaryrefslogtreecommitdiff
path: root/usr.bin/kdump
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-02-06 13:46:37 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-02-06 13:46:37 +0000
commitf5deb2d68c8ffb793e3e05b713b05e865f88476f (patch)
tree419b9e348dcd4cc9a7f796decd28bfd76f569650 /usr.bin/kdump
parent57c91ccabb7a419a7482e5a83839fb97a8024aad (diff)
make are of a whole number of missing system call names; interesting fix
from ghelmer@freebsd.org
Diffstat (limited to 'usr.bin/kdump')
-rw-r--r--usr.bin/kdump/kdump.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c
index d3af78f2a24..1ac7c6b660a 100644
--- a/usr.bin/kdump/kdump.c
+++ b/usr.bin/kdump/kdump.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kdump.c,v 1.6 1997/01/30 08:16:45 deraadt Exp $ */
+/* $OpenBSD: kdump.c,v 1.7 1997/02/06 13:46:36 deraadt Exp $ */
/*-
* Copyright (c) 1988, 1993
@@ -43,7 +43,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)kdump.c 8.4 (Berkeley) 4/28/95";
#endif
-static char *rcsid = "$OpenBSD: kdump.c,v 1.6 1997/01/30 08:16:45 deraadt Exp $";
+static char *rcsid = "$OpenBSD: kdump.c,v 1.7 1997/02/06 13:46:36 deraadt Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -84,6 +84,13 @@ struct ktr_header ktr_header;
#include "../../sys/compat/ultrix/ultrix_syscall.h"
#define KTRACE
+#define NFSCLIENT
+#define NFSSERVER
+#define SYSVSEM
+#define SYSVMSG
+#define SYSVSHM
+#define LFS
+#define NTP
#include "../../sys/kern/syscalls.c"
#include "../../sys/compat/hpux/hpux_syscalls.c"
@@ -94,6 +101,13 @@ struct ktr_header ktr_header;
#include "../../sys/compat/svr4/svr4_syscalls.c"
#include "../../sys/compat/ultrix/ultrix_syscalls.c"
#undef KTRACE
+#undef NFSCLIENT
+#undef NFSSERVER
+#undef SYSVSEM
+#undef SYSVMSG
+#undef SYSVSHM
+#undef LFS
+#undef NTP
struct emulation {
char *name; /* Emulation name */