diff options
Diffstat (limited to 'sys/compat/bsdos')
-rw-r--r-- | sys/compat/bsdos/syscalls.master | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/compat/bsdos/syscalls.master b/sys/compat/bsdos/syscalls.master index 23c1519292c..db626b903f3 100644 --- a/sys/compat/bsdos/syscalls.master +++ b/sys/compat/bsdos/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.14 2004/07/09 23:52:02 millert Exp $ + $OpenBSD: syscalls.master,v 1.15 2004/07/13 21:04:28 millert Exp $ ; OpenBSD COMPAT_BSDOS system call name/number "master" file. ; (See syscalls.conf to see what it is processed into.) @@ -337,9 +337,12 @@ 186 UNIMPL 187 UNIMPL #endif -188 NOARGS { int sys_stat(char *path, struct stat *ub); } -189 NOARGS { int sys_fstat(int fd, struct stat *sb); } -190 NOARGS { int sys_lstat(char *path, struct stat *ub); } +188 NOARGS { int compat_35_sys_stat(char *path, \ + struct stat35 *ub); } stat35 +189 NOARGS { int compat_35_sys_fstat(int fd, \ + struct stat35 *sb); } fstat35 +190 NOARGS { int compat_35_sys_lstat(char *path, \ + struct stat35 *ub); } lstat35 191 NOARGS { int sys_pathconf(char *path, int name); } 192 NOARGS { int sys_fpathconf(int fd, int name); } 193 UNIMPL |