Ejemplo n.º 1
0
Archivo: fd_32.c Proyecto: minhyuk/klee
__attribute__((weak)) off64_t lseek64(int fd, off64_t off, int whence) {
  return __fd_lseek(fd, off, whence);
}
Ejemplo n.º 2
0
Archivo: fd_32.c Proyecto: minhyuk/klee
off_t lseek(int fd, off_t off, int whence) {
  return (off_t) __fd_lseek(fd, off, whence);
}
Ejemplo n.º 3
0
Archivo: fd_64.c Proyecto: ewro/klee
off64_t lseek(int fd, off64_t offset, int whence) {
  return __fd_lseek(fd, offset, whence);
}