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

syslseek.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d5edd0f388279865acdda82bc5bcc3449e8eb65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* connector for lseek */

#include <reent.h>
#include <unistd.h>

off_t
lseek (int fd,
     off_t pos,
     int whence)
{
  return _lseek_r (_REENT, fd, pos, whence);
}