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