musl-tcc/src/linux/flock.c

8 lines
110 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <sys/file.h>
#include "syscall.h"
int flock(int fd, int op)
{
return syscall(SYS_flock, fd, op);
}