#include #include #include #include int flock(int fd, int opt) { MLIBC_CHECK_OR_ENOSYS(mlibc::sys_flock, -1); if(int e = mlibc::sys_flock(fd, opt); e) { errno = e; return -1; } return 0; }