File size: 110 Bytes
00df61d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
#include <sys/file.h>
#include "syscall.h"

int flock(int fd, int op)
{
	return syscall(SYS_flock, fd, op);
}