コード例 #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);
}