From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:17:33 +0000 (+0000) Subject: AIX implementation of lseek. X-Git-Tag: glibc-2.16-ports-before-merge~2599 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e41d64d42a0613a1776a88dd772e2c972f2f12be;p=thirdparty%2Fglibc.git AIX implementation of lseek. --- diff --git a/sysdeps/unix/sysv/aix/lseek.c b/sysdeps/unix/sysv/aix/lseek.c new file mode 100644 index 00000000000..99a6fb50b15 --- /dev/null +++ b/sysdeps/unix/sysv/aix/lseek.c @@ -0,0 +1,8 @@ +/* This is a system call. We only have to provide the wrapper. */ +#include + +off_t +__lseek (int fd, off_t offset, int whence) +{ + return lseek (fd, offset, whence); +}