diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-06-27 19:12:16 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-06-27 19:12:16 +0000 |
commit | 11c7ac847a377e312bbdb56ad0fb57687ee87b56 (patch) | |
tree | 83712b7be71b13136c14d2fa71fb4f97e23c3eb6 /libc/sysdeps/linux/common/tell.c | |
parent | 2a316d44e789ba98d6e153e8b6582abe916186cb (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.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); -} |