diff --git a/kernel/src/stdio/__stdio_seek.c b/kernel/src/stdio/__stdio_seek.c index e7d4ac05a1eef807a1429e9ed3a59551f6358559..aa97b42cf2140f2a62c15a1d290f2bda68b541e2 100644 --- a/kernel/src/stdio/__stdio_seek.c +++ b/kernel/src/stdio/__stdio_seek.c @@ -48,10 +48,6 @@ out: off_t __stdio_seek(FILE *f, off_t off, int whence) { -#ifdef __NR__llseek off_t result = 0; return __stdio_lseek64(f->fd, off>>32, off, &result, whence) ? -1 : result; -#else - return SysLseek(f->fd, off, whence); -#endif }