diff options
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r-- | sys/kern/syscalls.master | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 0eaf5345051..58e865bef0f 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.35 1999/05/22 21:23:40 weingart Exp $ +; $OpenBSD: syscalls.master,v 1.36 1999/05/31 17:34:47 millert Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -70,7 +70,7 @@ 16 STD { int sys_chown(const char *path, uid_t uid, \ gid_t gid); } 17 STD { int sys_obreak(char *nsize); } break -18 STD { int sys_getfsstat(struct statfs *buf, long bufsize, \ +18 STD { int sys_ogetfsstat(struct statfs *buf, long bufsize, \ int flags); } 19 COMPAT_43 { long sys_lseek(int fd, long offset, int whence); } \ olseek @@ -290,9 +290,9 @@ #endif 156 COMPAT_43 { int sys_getdirentries(int fd, char *buf, \ int count, long *basep); } ogetdirentries -157 STD { int sys_statfs(const char *path, \ - struct statfs *buf); } -158 STD { int sys_fstatfs(int fd, struct statfs *buf); } +157 STD { int sys_ostatfs(const char *path, \ + struct ostatfs *buf); } +158 STD { int sys_ofstatfs(int fd, struct ostatfs *buf); } 159 UNIMPL 160 UNIMPL #if defined(NFSCLIENT) || defined(NFSSERVER) @@ -514,3 +514,8 @@ #else 259 UNIMPL #endif +260 STD { int sys_getfsstat(struct statfs *buf, size_t bufsize, \ + int flags); } +261 STD { int sys_statfs(const char *path, \ + struct statfs *buf); } +262 STD { int sys_fstatfs(int fd, struct statfs *buf); } |