diff options
Diffstat (limited to 'libc/sysdeps/linux/common/tell.c')
-rw-r--r-- | libc/sysdeps/linux/common/tell.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libc/sysdeps/linux/common/tell.c b/libc/sysdeps/linux/common/tell.c deleted file mode 100644 index e02001d0d..000000000 --- a/libc/sysdeps/linux/common/tell.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <errno.h> -#include <unistd.h> -#include <syscall.h> - -off_t tell(int); - -off_t tell (int fildes) -{ - return lseek (fildes, 0, SEEK_CUR); -} |