update for HEAD-2003021201
[reactos.git] / lib / msvcrt / io / locking.c
index ba32830..9012183 100644 (file)
@@ -1,10 +1,12 @@
 #include <windows.h>
 #include <msvcrt/io.h>
 
+
 int _locking(int _fd, int mode, long nbytes)
 {
   long offset = _lseek(_fd, 0L, 1);
   if (!LockFile(_get_osfhandle(_fd),offset,0,nbytes,0))
     return -1;
   return 0;
 }