#include <stdio.h>
#include <sys/file.h>

int main() { 
int fd;
if ((fd = open("/var/mail/jrogers", O_RDONLY | O_EXLOCK)) == -1)
	perror("error opening file");
else
	printf("opened and locked ok\n");

close(fd);
return(0);
}
