diff options
author | 2002-10-28 03:35:53 +0000 | |
---|---|---|
committer | 2002-10-28 03:35:53 +0000 | |
commit | a0da80c444cab3cef6c8da164e6bbfb22dbd07a3 (patch) | |
tree | cd7e2b735553fe9986fad8ae7384572579bb0ee7 | |
parent | Rework/reword the install sanity checks and associated logic slightly. (diff) | |
download | wireguard-openbsd-a0da80c444cab3cef6c8da164e6bbfb22dbd07a3.tar.xz wireguard-openbsd-a0da80c444cab3cef6c8da164e6bbfb22dbd07a3.zip |
add getdents64.
-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); } |