Esempio n. 1
0
File: fd_32.c Progetto: minhyuk/klee
int lstat(const char *path, struct stat *buf) {
  struct stat64 tmp;
  int res = __fd_lstat(path, &tmp);
  __stat64_to_stat(&tmp, buf);
  return res;
}
Esempio n. 2
0
File: fd_64.c Progetto: ewro/klee
int lstat(const char *path, struct stat *buf) {
  return __fd_lstat(path, (struct stat64*) buf);
}
Esempio n. 3
0
File: fd_32.c Progetto: minhyuk/klee
__attribute__((weak)) int lstat64(const char *path, struct stat64 *buf) {
  return __fd_lstat(path, buf);
}
Esempio n. 4
0
File: fd_64.c Progetto: ewro/klee
int __lxstat(int vers, const char *path, struct stat *buf) {
  return __fd_lstat(path, (struct stat64*) buf);
}