blob: 70097ea22bc25e78103a82881f71cdec93026e99 [file] [log] [blame]
#include <errno.h>
#include <sys/file.h>
int flock(int fd, int op) {
errno = ENOSYS;
return -1;
}