afdb553841ec1106bcccb0f0c90ce16268196649
[musl] / src / stat / lstat.c
1 #include <sys/stat.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int lstat(const char *path, struct stat *buf)
6 {
7         return syscall2(__NR_lstat64, (long)path, (long)buf);
8 }
9
10 LFS64(lstat);