diff options
author | Bruce Evans <bde@FreeBSD.org> | 1998-06-09 03:36:59 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1998-06-09 03:36:59 +0000 |
commit | 39b14624c5dbe9f42e8fba5e35e76a38cbb9cf87 (patch) | |
tree | 57cff91f2aff431faf5907065f125ce2de5a7a7c /sys | |
parent | e7c1c309fa9437288b880347ac86399a650c595c (diff) | |
download | src-test2-39b14624c5dbe9f42e8fba5e35e76a38cbb9cf87.tar.gz src-test2-39b14624c5dbe9f42e8fba5e35e76a38cbb9cf87.zip |
Notes
Diffstat (limited to 'sys')
-rw-r--r-- | sys/i386/ibcs2/ibcs2_isc_sysent.c | 8 | ||||
-rw-r--r-- | sys/i386/ibcs2/ibcs2_sysent.c | 8 | ||||
-rw-r--r-- | sys/i386/ibcs2/ibcs2_xenix_sysent.c | 8 | ||||
-rw-r--r-- | sys/i386/linux/linux_proto.h | 2 | ||||
-rw-r--r-- | sys/i386/linux/linux_syscall.h | 2 | ||||
-rw-r--r-- | sys/i386/linux/linux_sysent.c | 9 |
6 files changed, 3 insertions, 34 deletions
diff --git a/sys/i386/ibcs2/ibcs2_isc_sysent.c b/sys/i386/ibcs2/ibcs2_isc_sysent.c index 51dab23afcf6..e26af48dbb70 100644 --- a/sys/i386/ibcs2/ibcs2_isc_sysent.c +++ b/sys/i386/ibcs2/ibcs2_isc_sysent.c @@ -5,8 +5,6 @@ * created from Id: syscalls.isc,v 1.4 1997/04/09 15:44:44 bde Exp */ -#include "opt_compat.h" - #include <sys/param.h> #include <sys/sysent.h> #include <sys/sysproto.h> @@ -15,12 +13,6 @@ #include <i386/ibcs2/ibcs2_proto.h> #include <i386/ibcs2/ibcs2_xenix.h> -#ifdef COMPAT_43 -#define compat(n, name) n, (sy_call_t *)__CONCAT(o,name) -#else -#define compat(n, name) 0, (sy_call_t *)nosys -#endif - /* The casts are bogus but will do for now. */ struct sysent isc_sysent[] = { { 0, (sy_call_t *)nosys }, /* 0 = nosys */ diff --git a/sys/i386/ibcs2/ibcs2_sysent.c b/sys/i386/ibcs2/ibcs2_sysent.c index 175b734d2d10..a55c27487717 100644 --- a/sys/i386/ibcs2/ibcs2_sysent.c +++ b/sys/i386/ibcs2/ibcs2_sysent.c @@ -5,8 +5,6 @@ * created from Id: syscalls.master,v 1.8 1997/04/09 15:44:46 bde Exp */ -#include "opt_compat.h" - #include <sys/param.h> #include <sys/sysent.h> #include <sys/sysproto.h> @@ -14,12 +12,6 @@ #include <i386/ibcs2/ibcs2_signal.h> #include <i386/ibcs2/ibcs2_proto.h> -#ifdef COMPAT_43 -#define compat(n, name) n, (sy_call_t *)__CONCAT(o,name) -#else -#define compat(n, name) 0, (sy_call_t *)nosys -#endif - /* The casts are bogus but will do for now. */ struct sysent ibcs2_sysent[] = { { 0, (sy_call_t *)nosys }, /* 0 = syscall */ diff --git a/sys/i386/ibcs2/ibcs2_xenix_sysent.c b/sys/i386/ibcs2/ibcs2_xenix_sysent.c index eb81543e82eb..180fa9684d71 100644 --- a/sys/i386/ibcs2/ibcs2_xenix_sysent.c +++ b/sys/i386/ibcs2/ibcs2_xenix_sysent.c @@ -5,8 +5,6 @@ * created from Id: syscalls.xenix,v 1.5 1997/04/09 15:44:47 bde Exp */ -#include "opt_compat.h" - #include <sys/param.h> #include <sys/sysent.h> #include <sys/sysproto.h> @@ -14,12 +12,6 @@ #include <i386/ibcs2/ibcs2_signal.h> #include <i386/ibcs2/ibcs2_xenix.h> -#ifdef COMPAT_43 -#define compat(n, name) n, (sy_call_t *)__CONCAT(o,name) -#else -#define compat(n, name) 0, (sy_call_t *)nosys -#endif - /* The casts are bogus but will do for now. */ struct sysent xenix_sysent[] = { { 0, (sy_call_t *)nosys }, /* 0 = nosys */ diff --git a/sys/i386/linux/linux_proto.h b/sys/i386/linux/linux_proto.h index ad58ee961404..f21b20674bf5 100644 --- a/sys/i386/linux/linux_proto.h +++ b/sys/i386/linux/linux_proto.h @@ -2,7 +2,7 @@ * System call prototypes. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.10 1998/03/29 07:59:10 peter Exp + * created from Id: syscalls.master,v 1.11 1998/06/09 03:28:14 bde Exp */ #ifndef _LINUX_SYSPROTO_H_ diff --git a/sys/i386/linux/linux_syscall.h b/sys/i386/linux/linux_syscall.h index dd95a31c8c79..7c8ef6d9da94 100644 --- a/sys/i386/linux/linux_syscall.h +++ b/sys/i386/linux/linux_syscall.h @@ -2,7 +2,7 @@ * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.10 1998/03/29 07:59:10 peter Exp + * created from Id: syscalls.master,v 1.11 1998/06/09 03:28:14 bde Exp */ #define LINUX_SYS_linux_setup 0 diff --git a/sys/i386/linux/linux_sysent.c b/sys/i386/linux/linux_sysent.c index 1e1bf47be833..3768f57517af 100644 --- a/sys/i386/linux/linux_sysent.c +++ b/sys/i386/linux/linux_sysent.c @@ -2,23 +2,16 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.10 1998/03/29 07:59:10 peter Exp + * created from Id: syscalls.master,v 1.11 1998/06/09 03:28:14 bde Exp */ #include "opt_compat.h" - #include <sys/param.h> #include <sys/sysent.h> #include <sys/sysproto.h> #include <i386/linux/linux.h> #include <i386/linux/linux_proto.h> -#ifdef COMPAT_43 -#define compat(n, name) n, (sy_call_t *)__CONCAT(o,name) -#else -#define compat(n, name) 0, (sy_call_t *)nosys -#endif - /* The casts are bogus but will do for now. */ struct sysent linux_sysent[] = { { 0, (sy_call_t *)linux_setup }, /* 0 = linux_setup */ |