Sign in
mojo
/
mojo-tools
/
25fa89235890e5e9a1581dba3b5f38836b77f9d5
/
.
/
fusl
/
src
/
linux
/
flock.c
blob: 87aa5cfed275bf475f01bcbf63184415d01745f4 [
file
]
#include
<sys/file.h>
#include
"syscall.h"
int
flock
(
int
fd
,
int
op
)
{
return
syscall
(
SYS_flock
,
fd
,
op
);
}