#include <sys/feature_tests.h>
#include "lint.h"
#include <sys/types.h>
#include <sys/file.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
int
flock(int fildes, int operation)
{
struct flock64 l;
int op;
int rv;
l.l_whence = SEEK_SET;
l.l_start = 0;
l.l_len = 0;
l.l_sysid = 0;
l.l_pid = 0;
switch (operation & ~LOCK_NB) {
case LOCK_UN:
if (operation & LOCK_NB) {
errno = EINVAL;
return (-1);
}
l.l_type = F_UNLCK;
rv = fcntl(fildes, F_FLOCK, &l);
break;
case LOCK_EX:
case LOCK_SH:
l.l_type = ((operation & ~LOCK_NB) == LOCK_EX) ?
F_WRLCK : F_RDLCK;
op = (operation & LOCK_NB) ? F_FLOCK : F_FLOCKW;
rv = fcntl(fildes, op, &l);
break;
default:
errno = EINVAL;
return (-1);
}
return (rv);
}