summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/tell.c
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2001-06-27 19:12:16 +0000
committerManuel Novoa III <mjn3@codepoet.org>2001-06-27 19:12:16 +0000
commit11c7ac847a377e312bbdb56ad0fb57687ee87b56 (patch)
tree83712b7be71b13136c14d2fa71fb4f97e23c3eb6 /libc/sysdeps/linux/common/tell.c
parent2a316d44e789ba98d6e153e8b6582abe916186cb (diff)
Remove obsolete files tell.c and getdents.c
Diffstat (limited to 'libc/sysdeps/linux/common/tell.c')
-rw-r--r--libc/sysdeps/linux/common/tell.c10
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);
-}