From edc1ddf9023d589e4ca4a080b886e4312b7f7367 Mon Sep 17 00:00:00 2001 From: deraadt Date: Thu, 6 Feb 1997 13:46:36 +0000 Subject: [PATCH] make are of a whole number of missing system call names; interesting fix from ghelmer@freebsd.org --- usr.bin/kdump/kdump.c | 18 ++++++++++++++++-- 1 file 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 @@ -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 */ -- 2.20.1