diff options
Diffstat (limited to 'sys/compat/freebsd/syscalls.master')
-rw-r--r-- | sys/compat/freebsd/syscalls.master | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/compat/freebsd/syscalls.master b/sys/compat/freebsd/syscalls.master index 0c9ddf97465..d6f0df89b23 100644 --- a/sys/compat/freebsd/syscalls.master +++ b/sys/compat/freebsd/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.9 1999/02/10 08:05:08 deraadt Exp $ + $OpenBSD: syscalls.master,v 1.10 1999/05/31 17:34:45 millert Exp $ ; $NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp $ ; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -70,8 +70,8 @@ 15 STD { int freebsd_sys_chmod(char *path, int mode); } 16 STD { int freebsd_sys_chown(char *path, int uid, int gid); } 17 NOARGS { int sys_obreak(char *nsize); } break -18 NOARGS { int sys_getfsstat(struct statfs *buf, long bufsize, \ - int flags); } +18 STD { int freebsd_sys_getfsstat(struct freebsd_statfs *buf,\ + long bufsize, int flags); } 19 NOARGS { long compat_43_sys_lseek(int fd, long offset, \ int whence); } olseek 20 NOARGS { pid_t sys_getpid(void); } @@ -287,8 +287,9 @@ 156 NOARGS { int compat_43_sys_getdirentries(int fd, char *buf, \ u_int count, long *basep); } ogetdirentries 157 STD { int freebsd_sys_statfs(char *path, \ - struct statfs *buf); } -158 NOARGS { int sys_fstatfs(int fd, struct statfs *buf); } + struct freebsd_statfs *buf); } +158 STD { int freebsd_sys_fstatfs(int fd, \ + struct freebsd_statfs *buf); } 159 UNIMPL 160 UNIMPL #ifdef NFSCLIENT |