1 /* libc/sys/linux/sys/file.h - BSD compatibility */
2 
3 /* Written 2000 by Werner Almesberger */
4 
5 
6 #ifndef _SYS_FILE_H
7 #define _SYS_FILE_H
8 
9 #include <sys/fcntl.h>
10 
11 int flock(int fd,int operation);
12 
13 #endif
14