add getopt reset support
[musl] / src / stat / fstatat.c
index d6b9390..863d526 100644 (file)
@@ -2,7 +2,7 @@
 #include "syscall.h"
 #include "libc.h"
 
-int fstatat(int fd, const char *path, struct stat *buf, int flag)
+int fstatat(int fd, const char *restrict path, struct stat *restrict buf, int flag)
 {
        return syscall(SYS_fstatat, fd, path, buf, flag);
 }