Merge pull request #236 from Daniel-Abrecht/master

Define F_RDLCK for windows builds
libnfs-4.0.0-vitalif
Ronnie Sahlberg 2018-01-14 11:21:46 +10:00 committed by GitHub
commit f6e51c34ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -63,6 +63,12 @@ typedef int socklen_t;
#define S_IFLNK 0xA000 /* Link */
#endif
#ifndef F_RDLCK
#define F_RDLCK 0
#define F_WRLCK 1
#define F_UNLCK 2
#endif
#ifndef S_IFIFO
#define S_IFIFO 0x1000 /* FIFO */
#endif