示例#1
0
文件: fd_32.c 项目: minhyuk/klee
__attribute__((weak)) off64_t lseek64(int fd, off64_t off, int whence) {
  return __fd_lseek(fd, off, whence);
}
示例#2
0
文件: fd_32.c 项目: minhyuk/klee
off_t lseek(int fd, off_t off, int whence) {
  return (off_t) __fd_lseek(fd, off, whence);
}
示例#3
0
文件: fd_64.c 项目: ewro/klee
off64_t lseek(int fd, off64_t offset, int whence) {
  return __fd_lseek(fd, offset, whence);
}