OLD | NEW |
1 #include "stdio_impl.h" | 1 #include "stdio_impl.h" |
2 | 2 |
3 off_t __stdio_seek(FILE *f, off_t off, int whence) | 3 off_t __stdio_seek(FILE* f, off_t off, int whence) { |
4 { | 4 off_t ret; |
5 » off_t ret; | |
6 #ifdef SYS__llseek | 5 #ifdef SYS__llseek |
7 » if (syscall(SYS__llseek, f->fd, off>>32, off, &ret, whence)<0) | 6 if (syscall(SYS__llseek, f->fd, off >> 32, off, &ret, whence) < 0) |
8 » » ret = -1; | 7 ret = -1; |
9 #else | 8 #else |
10 » ret = syscall(SYS_lseek, f->fd, off, whence); | 9 ret = syscall(SYS_lseek, f->fd, off, whence); |
11 #endif | 10 #endif |
12 » return ret; | 11 return ret; |
13 } | 12 } |
OLD | NEW |