summaryrefslogtreecommitdiff
path: root/bsp/libwrap/sys/lseek.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsp/libwrap/sys/lseek.c')
-rw-r--r--bsp/libwrap/sys/lseek.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/bsp/libwrap/sys/lseek.c b/bsp/libwrap/sys/lseek.c
deleted file mode 100644
index 4131449..0000000
--- a/bsp/libwrap/sys/lseek.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* See LICENSE of license details. */
-
-#include <errno.h>
-#include <unistd.h>
-#include <sys/types.h>
-#include "stub.h"
-#include "weak_under_alias.h"
-
-off_t __wrap_lseek(int fd, off_t ptr, int dir)
-{
- if (isatty(fd))
- return 0;
-
- return _stub(EBADF);
-}
-weak_under_alias(lseek);