123456789101112131415161718192021 |
- #include "_stdio.h"
- int attribute_hidden __stdio_seek(FILE *stream, register __offmax_t *pos, int whence)
- {
- __offmax_t res;
- res = lseek64(stream->__filedes, *pos, whence);
- return (res >= 0) ? ((*pos = res), 0) : ((int) res);
- }
|