예제 #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);
}