Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
54b7564b72c1edcc79fca083047521fb56eaea00
/
.
/
src
/
linux
/
flock.c
blob: 87aa5cfed275bf475f01bcbf63184415d01745f4 [
file
] [
log
] [
blame
]
#include
<sys/file.h>
#include
"syscall.h"
int
flock
(
int
fd
,
int
op
)
{
return
syscall
(
SYS_flock
,
fd
,
op
);
}