mirror of
https://github.com/fluencelabs/musl
synced 2025-06-13 06:51:43 +00:00
8 lines
110 B
C
8 lines
110 B
C
![]() |
#include <sys/file.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int flock(int fd, int op)
|
||
|
{
|
||
|
return syscall(SYS_flock, fd, op);
|
||
|
}
|