示例#1
0
文件: fd_32.c 项目: minhyuk/klee
int stat(const char *path, struct stat *buf) {
  struct stat64 tmp;
  int res = __fd_stat(path, &tmp);
  __stat64_to_stat(&tmp, buf);
  return res;
}
示例#2
0
文件: fd_64.c 项目: ewro/klee
int stat(const char *path, struct stat *buf) {
  return __fd_stat(path, (struct stat64*) buf);
}
示例#3
0
文件: fd_32.c 项目: minhyuk/klee
__attribute__((weak)) int stat64(const char *path, struct stat64 *buf) {
  return __fd_stat(path, buf);
}
示例#4
0
文件: fd_64.c 项目: ewro/klee
int __xstat(int vers, const char *path, struct stat *buf) {
  return __fd_stat(path, (struct stat64*) buf);
}