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