summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-06-09 03:36:59 +0000
committerbde <bde@FreeBSD.org>1998-06-09 03:36:59 +0000
commitced2b136af7264a4ab5675b0bee8e972c23f9ea7 (patch)
tree4c1330308fa6ad0cfdbe3576dcfd94e342da0568
parentaf177df3632aaf9f0208f5c6555e739a8a72bcd6 (diff)
downloadFreeBSD-src-ced2b136af7264a4ab5675b0bee8e972c23f9ea7.zip
FreeBSD-src-ced2b136af7264a4ab5675b0bee8e972c23f9ea7.tar.gz
Updated generated files.
-rw-r--r--sys/i386/ibcs2/ibcs2_isc_sysent.c8
-rw-r--r--sys/i386/ibcs2/ibcs2_sysent.c8
-rw-r--r--sys/i386/ibcs2/ibcs2_xenix_sysent.c8
-rw-r--r--sys/i386/linux/linux_proto.h2
-rw-r--r--sys/i386/linux/linux_syscall.h2
-rw-r--r--sys/i386/linux/linux_sysent.c9
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 51dab23..e26af48 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 175b734..a55c274 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 eb81543..180fa96 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 ad58ee9..f21b206 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 dd95a31..7c8ef6d 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 1e1bf47..3768f57 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 */
OpenPOWER on IntegriCloud