diff options
author | 1997-02-06 13:46:36 +0000 | |
---|---|---|
committer | 1997-02-06 13:46:36 +0000 | |
commit | edc1ddf9023d589e4ca4a080b886e4312b7f7367 (patch) | |
tree | 74a249c6ccfcf29ec58ec563aa0336277a7aec67 | |
parent | expand hostname to MAXHOSTNAMELEN (diff) | |
download | wireguard-openbsd-edc1ddf9023d589e4ca4a080b886e4312b7f7367.tar.xz wireguard-openbsd-edc1ddf9023d589e4ca4a080b886e4312b7f7367.zip |
make are of a whole number of missing system call names; interesting fix
from ghelmer@freebsd.org
-rw-r--r-- | usr.bin/kdump/kdump.c | 18 |
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 */ |