diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-10-28 03:35:54 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-10-28 03:35:54 +0000 |
commit | 6b50a28cb283d9ba12a9a06cab9232f5146b8a3d (patch) | |
tree | 7c1b435ccd27b5a6fca0f16eb569ea3ca3fe882a /sys/compat | |
parent | 53589eb972d24685a5afb2e75c8569cb4ff36552 (diff) |
add getdents64.
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/linux/syscalls.master | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/compat/linux/syscalls.master b/sys/compat/linux/syscalls.master index 644738e1985..b1dfbe05728 100644 --- a/sys/compat/linux/syscalls.master +++ b/sys/compat/linux/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.34 2002/06/05 19:43:25 jasoni Exp $ + $OpenBSD: syscalls.master,v 1.35 2002/10/28 03:35:53 fgsch Exp $ ; $NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -349,5 +349,6 @@ 217 NOARGS { int linux_sys_pivot_root(void); } 218 NOARGS { int linux_sys_mincore(void); } 219 NOARGS { int linux_sys_madvise(void); } -220 NOARGS { int linux_sys_getdents64(void); } +220 STD { int linux_sys_getdents64(int fd, void *dirent, \ + unsigned count); } 221 STD { int linux_sys_fcntl64(u_int fd, u_int cmd, void *arg); } |