stat.c 163 B

12345678910
  1. #include <sys/stat.h>
  2. #include "syscall.h"
  3. #include "libc.h"
  4. int stat(const char *path, struct stat *buf)
  5. {
  6. return syscall(SYS_stat, path, buf);
  7. }
  8. LFS64(stat);