Beispiel #1
0
__attribute__((weak)) off64_t lseek64(int fd, off64_t off, int whence) {
  return __fd_lseek(fd, off, whence);
}
Beispiel #2
0
off_t lseek(int fd, off_t off, int whence) {
  return (off_t) __fd_lseek(fd, off, whence);
}
Beispiel #3
0
Datei: fd_64.c Projekt: ewro/klee
off64_t lseek(int fd, off64_t offset, int whence) {
  return __fd_lseek(fd, offset, whence);
}