diff options
author | 2002-10-28 03:39:30 +0000 | |
---|---|---|
committer | 2002-10-28 03:39:30 +0000 | |
commit | af23ea365d8b81d6358809b089e1e545dc56bb3b (patch) | |
tree | 0c0803221af418984b9c6583f53d837f326791d4 /sys/compat/linux/linux_syscall.h | |
parent | add getdents64. (diff) | |
download | wireguard-openbsd-af23ea365d8b81d6358809b089e1e545dc56bb3b.tar.xz wireguard-openbsd-af23ea365d8b81d6358809b089e1e545dc56bb3b.zip |
getdents64 support, based on FreeBSD.
thanks to jpmk@fibertel.com.ar for providing a testbed; jasoni ok.
Diffstat (limited to 'sys/compat/linux/linux_syscall.h')
-rw-r--r-- | sys/compat/linux/linux_syscall.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h index a175e4f3528..fa2805a5755 100644 --- a/sys/compat/linux/linux_syscall.h +++ b/sys/compat/linux/linux_syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscall.h,v 1.35 2002/06/05 19:43:44 jasoni Exp $ */ +/* $OpenBSD: linux_syscall.h,v 1.36 2002/10/28 03:39:30 fgsch Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.34 2002/06/05 19:43:25 jasoni Exp + * created from OpenBSD: syscalls.master,v 1.35 2002/10/28 03:35:53 fgsch Exp */ /* syscall: "syscall" ret: "int" args: */ @@ -676,7 +676,7 @@ /* syscall: "madvise" ret: "int" args: */ #define LINUX_SYS_madvise 219 -/* syscall: "getdents64" ret: "int" args: */ +/* syscall: "getdents64" ret: "int" args: "int" "void *" "unsigned" */ #define LINUX_SYS_getdents64 220 /* syscall: "fcntl64" ret: "int" args: "u_int" "u_int" "void *" */ |