1
0

lstat.c 184 B

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