diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-14 20:56:51 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-14 20:56:51 +0000 |
commit | 846f936dfe7c65bc3f47f2b9ebde8e69258e9334 (patch) | |
tree | f7c99cbb3d547aa78f383fc8de22bc2a5616ba37 | |
parent | 2e388ac3c6d30ff7e57718ef0038a94f60566c83 (diff) |
sync
-rw-r--r-- | sys/kern/init_sysent.c | 2 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 2 | ||||
-rw-r--r-- | sys/sys/syscall.h | 2 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 18 |
4 files changed, 12 insertions, 12 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 80b8277e726..170a0a18fa1 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 OpenBSD: syscalls.master,v 1.18 1997/11/13 18:35:31 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.19 1997/11/14 20:56:03 deraadt Exp */ #include <sys/param.h> diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 7e7e2917986..1444df66803 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 OpenBSD: syscalls.master,v 1.18 1997/11/13 18:35:31 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.19 1997/11/14 20:56:03 deraadt Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 705d0fad83c..34f96f021f8 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 OpenBSD: syscalls.master,v 1.18 1997/11/13 18:35:31 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.19 1997/11/14 20:56:03 deraadt Exp */ #define SYS_syscall 0 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 0528b7fa678..522dee6d557 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -2,7 +2,7 @@ * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.18 1997/11/13 18:35:31 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.19 1997/11/14 20:56:03 deraadt Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -312,24 +312,24 @@ struct sys_ovadvise_args { }; struct sys_munmap_args { - syscallarg(caddr_t) addr; + syscallarg(void *) addr; syscallarg(size_t) len; }; struct sys_mprotect_args { - syscallarg(caddr_t) addr; + syscallarg(void *) addr; syscallarg(size_t) len; syscallarg(int) prot; }; struct sys_madvise_args { - syscallarg(caddr_t) addr; + syscallarg(void *) addr; syscallarg(size_t) len; syscallarg(int) behav; }; struct sys_mincore_args { - syscallarg(caddr_t) addr; + syscallarg(void *) addr; syscallarg(size_t) len; syscallarg(char *) vec; }; @@ -826,7 +826,7 @@ struct sys_getdirentries_args { }; struct sys_mmap_args { - syscallarg(caddr_t) addr; + syscallarg(void *) addr; syscallarg(size_t) len; syscallarg(int) prot; syscallarg(int) flags; @@ -864,12 +864,12 @@ struct sys___sysctl_args { }; struct sys_mlock_args { - syscallarg(caddr_t) addr; + syscallarg(void *) addr; syscallarg(size_t) len; }; struct sys_munlock_args { - syscallarg(caddr_t) addr; + syscallarg(void *) addr; syscallarg(size_t) len; }; @@ -978,7 +978,7 @@ struct sys_nanosleep_args { }; struct sys_minherit_args { - syscallarg(caddr_t) addr; + syscallarg(void *) addr; syscallarg(size_t) len; syscallarg(int) inherit; }; |