fix v4l2 buffer ioctl fallbacks for pre-5.6 kernels
[musl] / src / stat / fchmodat.c
index d94667a..4ee00b0 100644 (file)
@@ -2,8 +2,7 @@
 #include <fcntl.h>
 #include <errno.h>
 #include "syscall.h"
-
-void __procfdname(char *, unsigned);
+#include "kstat.h"
 
 int fchmodat(int fd, const char *path, mode_t mode, int flag)
 {
@@ -12,7 +11,7 @@ int fchmodat(int fd, const char *path, mode_t mode, int flag)
        if (flag != AT_SYMLINK_NOFOLLOW)
                return __syscall_ret(-EINVAL);
 
-       struct stat st;
+       struct kstat st;
        int ret, fd2;
        char proc[15+3*sizeof(int)];