diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 4697d70249cb..7f62e27c49d8 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.46 1998/01/24 02:54:35 eivind Exp + * created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp */ #include "opt_compat.h" diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 09bd89085822..ee2f34051fef 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -2,7 +2,7 @@ * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.46 1998/01/24 02:54:35 eivind Exp + * created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h index 42fb3a4095bd..b79c0a86290e 100644 --- a/sys/sys/syscall-hide.h +++ b/sys/sys/syscall-hide.h @@ -2,7 +2,7 @@ * System call hiders. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.46 1998/01/24 02:54:35 eivind Exp + * created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp */ HIDE_POSIX(fork) diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index b01e8910af06..c9397e805c7f 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -2,7 +2,7 @@ * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.46 1998/01/24 02:54:35 eivind Exp + * created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp */ #define SYS_syscall 0 diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h index 1429083c331e..6d3d8e0f26d0 100644 --- a/sys/sys/sysproto.h +++ b/sys/sys/sysproto.h @@ -2,7 +2,7 @@ * System call prototypes. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.46 1998/01/24 02:54:35 eivind Exp + * created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp */ #ifndef _SYS_SYSPROTO_H_ @@ -10,6 +10,8 @@ #include +struct proc; + struct nosys_args { int dummy; }; @@ -277,7 +279,7 @@ struct madvise_args { int behav; }; struct mincore_args { - caddr_t addr; + const void * addr; size_t len; char * vec; };