Example #1
0
File: fd_32.c Project: 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;
}
Example #2
0
File: fd_64.c Project: ewro/klee
int stat(const char *path, struct stat *buf) {
  return __fd_stat(path, (struct stat64*) buf);
}
Example #3
0
File: fd_32.c Project: minhyuk/klee
__attribute__((weak)) int stat64(const char *path, struct stat64 *buf) {
  return __fd_stat(path, buf);
}
Example #4
0
File: fd_64.c Project: ewro/klee
int __xstat(int vers, const char *path, struct stat *buf) {
  return __fd_stat(path, (struct stat64*) buf);
}