summaryrefslogtreecommitdiffstats
path: root/newlib/libc/syscalls/syslseek.c
blob: 275d67ce4124dc2b4a69198e77d6bc3c150e5b10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* connector for lseek */

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

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