2006-01-07 Roland McGrath <roland@redhat.com>
[glibc-ports.git] / sysdeps / unix / sysv / aix / lseek.c
blobd4cbdbe7027dfa050685182f643cafc952b1592e
1 /* This is a system call. We only have to provide the wrapper. */
2 #include <unistd.h>
4 off_t
5 __lseek (int fd, off_t offset, int whence)
7 return lseek (fd, offset, whence);
9 strong_alias (__lseek, __libc_lseek)
10 libc_hidden_def (__lseek)