Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lseek64.c « stdio « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f8bfa5e493262981285cb5af9cd1077e1285696 (plain)
1
2
3
4
5
6
7
8
#include <io.h>

off64_t lseek64
(int fd, off64_t offset, int whence) 
{
  return _lseeki64(fd, (__int64) offset, whence);
}