diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1999-09-17 15:04:49 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1999-09-17 15:04:49 +0000 |
commit | 6f623063536af3e26395860b13502e5c9d6d631b (patch) | |
tree | c2f8a93f27e62596e2c15995480712e3adbfeeed /sys/compat/netbsd/netbsd_syscallargs.h | |
parent | 457ef0ff94217f6c6731b8571aeb871aaf243adf (diff) |
regen
Diffstat (limited to 'sys/compat/netbsd/netbsd_syscallargs.h')
-rw-r--r-- | sys/compat/netbsd/netbsd_syscallargs.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/sys/compat/netbsd/netbsd_syscallargs.h b/sys/compat/netbsd/netbsd_syscallargs.h index 0c660ee4a72..3227b391a9e 100644 --- a/sys/compat/netbsd/netbsd_syscallargs.h +++ b/sys/compat/netbsd/netbsd_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: netbsd_syscallargs.h,v 1.7 1999/09/17 13:42:35 kstailey Exp $ */ +/* $OpenBSD: netbsd_syscallargs.h,v 1.8 1999/09/17 15:04:47 kstailey Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.7 1999/09/17 13:41:29 kstailey Exp + * created from; OpenBSD: syscalls.master,v 1.8 1999/09/17 15:03:18 kstailey Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -35,6 +35,16 @@ struct netbsd_sys_getdents_args { syscallarg(size_t) count; }; +struct netbsd_sys_lchmod_args { + syscallarg(const char *) path; + syscallarg(mode_t) mode; +}; + +struct netbsd_sys_lutimes_args { + syscallarg(const char *) path; + syscallarg(const struct timeval *) tptr; +}; + struct netbsd_sys___stat13_args { syscallarg(const char *) path; syscallarg(struct netbsd_stat *) ub; @@ -356,7 +366,9 @@ int sys_nanosleep __P((struct proc *, void *, register_t *)); int netbsd_sys_fdatasync __P((struct proc *, void *, register_t *)); int netbsd_sys_getdents __P((struct proc *, void *, register_t *)); int sys_minherit __P((struct proc *, void *, register_t *)); +int netbsd_sys_lchmod __P((struct proc *, void *, register_t *)); int sys_lchown __P((struct proc *, void *, register_t *)); +int netbsd_sys_lutimes __P((struct proc *, void *, register_t *)); int sys_msync __P((struct proc *, void *, register_t *)); int netbsd_sys___stat13 __P((struct proc *, void *, register_t *)); int netbsd_sys___fstat13 __P((struct proc *, void *, register_t *)); |