Import Upstream version 20180207
[hcoop/debian/mlton.git] / runtime / basis / Posix / IO / FLock-consts.c
1 #include "platform.h"
2
3 const C_Int_t Posix_IO_FLock_F_GETLK = F_GETLK;
4 const C_Int_t Posix_IO_FLock_F_SETLK = F_SETLK;
5 const C_Int_t Posix_IO_FLock_F_SETLKW = F_SETLKW;
6
7 const C_Short_t Posix_IO_FLock_F_RDLCK = F_RDLCK;
8 const C_Short_t Posix_IO_FLock_F_UNLCK = F_UNLCK;
9 const C_Short_t Posix_IO_FLock_F_WRLCK = F_WRLCK;
10
11 const C_Short_t Posix_IO_FLock_SEEK_CUR = SEEK_CUR;
12 const C_Short_t Posix_IO_FLock_SEEK_END = SEEK_END;
13 const C_Short_t Posix_IO_FLock_SEEK_SET = SEEK_SET;