use restrict everywhere it's required by c99 and/or posix 2008
[musl] / src / stat / lstat.c
1 #include <sys/stat.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int lstat(const char *restrict path, struct stat *restrict buf)
6 {
7         return syscall(SYS_lstat, path, buf);
8 }
9
10 LFS64(lstat);