diff options
Diffstat (limited to 'sys/compat/linux/linux_syscallargs.h')
-rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index 05888b56841..49761a3a234 100644 --- a/sys/compat/linux/linux_syscallargs.h +++ b/sys/compat/linux/linux_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.10 1997/07/28 10:19:35 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.11 1997/07/28 10:21:31 deraadt Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -342,7 +342,7 @@ struct linux_sys___sysctl_args { syscallarg(struct linux___sysctl *) lsp; }; -struct sys_mremap_args { +struct linux_sys_mremap_args { syscallarg(void *) old_address; syscallarg(size_t) old_size; syscallarg(size_t) new_size; @@ -483,4 +483,4 @@ int linux_sys_fdatasync __P((struct proc *, void *, register_t *)); int linux_sys___sysctl __P((struct proc *, void *, register_t *)); int sys_mlock __P((struct proc *, void *, register_t *)); int sys_munlock __P((struct proc *, void *, register_t *)); -int sys_mremap __P((struct proc *, void *, register_t *)); +int linux_sys_mremap __P((struct proc *, void *, register_t *)); |