Fix type mismatches between foreign imports and HsBase.h
[haskell-directory.git] / include / lockFile.h
1 /*
2  * (c) The University of Glasgow 2001
3  *
4  * $Id: lockFile.h,v 1.3 2005/01/28 13:36:34 simonmar Exp $
5  *
6  * lockFile header
7  */
8
9 #if !(defined(_MSC_VER) || defined(__MINGW32__) || defined(_WIN32))
10
11 int lockFile(int fd, int for_writing, int exclusive);
12 int unlockFile(int fd);
13
14 #endif