diff --git a/sys/i386/ibcs2/ibcs2_isc_sysent.c b/sys/i386/ibcs2/ibcs2_isc_sysent.c index 51dab23afcf..e26af48dbb7 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 #include #include @@ -15,12 +13,6 @@ #include #include -#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 175b734d2d1..a55c2748771 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 #include #include @@ -14,12 +12,6 @@ #include #include -#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 eb81543e82e..180fa9684d7 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 #include #include @@ -14,12 +12,6 @@ #include #include -#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 ad58ee96140..f21b20674bf 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 dd95a31c8c7..7c8ef6d9da9 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 1e1bf47be83..3768f57517a 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 #include #include #include #include -#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 */