1 #include <errno.h>
2 #include <sys/file.h>
3 
flock(int fd,int op)4 int flock(int fd, int op) {
5     errno = ENOSYS;
6     return -1;
7 }
8