Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
linux
/
open_by_handle_at.c
blob: 1c9b6a2be4df8e0f5af8e80bb2530c7979c60418 [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<fcntl.h>
#include
"syscall.h"
int
open_by_handle_at
(
int
mount_fd
,
struct
file_handle
*
handle
,
int
flags
)
{
return
syscall
(
SYS_open_by_handle_at
,
mount_fd
,
handle
,
flags
);
}