reran makesyscalls.sh after "int len" -> "size_t len" changes.

This commit is contained in:
Peter Wemm 1996-03-02 17:01:36 +00:00
parent ce06b86652
commit bad4352830
5 changed files with 10 additions and 10 deletions

View File

@ -2,7 +2,7 @@
* System call switch table. * System call switch table.
* *
* DO NOT EDIT-- this file is automatically generated. * DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.26 1996/02/23 18:20:44 peter Exp * created from Id: syscalls.master,v 1.27 1996/03/02 16:51:25 peter Exp
*/ */
#include <sys/types.h> #include <sys/types.h>

View File

@ -2,7 +2,7 @@
* System call names. * System call names.
* *
* DO NOT EDIT-- this file is automatically generated. * DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.26 1996/02/23 18:20:44 peter Exp * created from Id: syscalls.master,v 1.27 1996/03/02 16:51:25 peter Exp
*/ */
char *syscallnames[] = { char *syscallnames[] = {

View File

@ -2,7 +2,7 @@
* System call hiders. * System call hiders.
* *
* DO NOT EDIT-- this file is automatically generated. * DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.26 1996/02/23 18:20:44 peter Exp * created from Id: syscalls.master,v 1.27 1996/03/02 16:51:25 peter Exp
*/ */
HIDE_POSIX(fork) HIDE_POSIX(fork)

View File

@ -2,7 +2,7 @@
* System call numbers. * System call numbers.
* *
* DO NOT EDIT-- this file is automatically generated. * DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.26 1996/02/23 18:20:44 peter Exp * created from Id: syscalls.master,v 1.27 1996/03/02 16:51:25 peter Exp
*/ */
#define SYS_syscall 0 #define SYS_syscall 0

View File

@ -2,7 +2,7 @@
* System call prototypes. * System call prototypes.
* *
* DO NOT EDIT-- this file is automatically generated. * DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.26 1996/02/23 18:20:44 peter Exp * created from Id: syscalls.master,v 1.27 1996/03/02 16:51:25 peter Exp
*/ */
#ifndef _SYS_SYSPROTO_H_ #ifndef _SYS_SYSPROTO_H_
@ -249,7 +249,7 @@ struct getpagesize_args {
}; };
struct msync_args { struct msync_args {
caddr_t addr; caddr_t addr;
int len; size_t len;
int flags; int flags;
}; };
struct vfork_args { struct vfork_args {
@ -266,21 +266,21 @@ struct ovadvise_args {
}; };
struct munmap_args { struct munmap_args {
caddr_t addr; caddr_t addr;
int len; size_t len;
}; };
struct mprotect_args { struct mprotect_args {
caddr_t addr; caddr_t addr;
int len; size_t len;
int prot; int prot;
}; };
struct madvise_args { struct madvise_args {
caddr_t addr; caddr_t addr;
int len; size_t len;
int behav; int behav;
}; };
struct mincore_args { struct mincore_args {
caddr_t addr; caddr_t addr;
int len; size_t len;
char * vec; char * vec;
}; };
struct getgroups_args { struct getgroups_args {