move and deduplicate declarations of __procfdname to make it checkable
[musl] / src / stat / fchmodat.c
index d94667a..be61bdf 100644 (file)
@@ -3,8 +3,6 @@
 #include <errno.h>
 #include "syscall.h"
 
-void __procfdname(char *, unsigned);
-
 int fchmodat(int fd, const char *path, mode_t mode, int flag)
 {
        if (!flag) return syscall(SYS_fchmodat, fd, path, mode, flag);