flock.c 110 B

1234567
  1. #include <sys/file.h>
  2. #include "syscall.h"
  3. int flock(int fd, int op)
  4. {
  5. return syscall(SYS_flock, fd, op);
  6. }