use hidden visibility for sh __unmapself backends
[musl] / src / stat / fstat.c
1 #include <sys/stat.h>
2 #include <errno.h>
3 #include <fcntl.h>
4 #include "syscall.h"
5 #include "libc.h"
6
7 int fstat(int fd, struct stat *st)
8 {
9         int ret = __syscall(SYS_fstat, fd, st);
10         if (ret != -EBADF || __syscall(SYS_fcntl, fd, F_GETFD) < 0)
11                 return __syscall_ret(ret);
12
13         char buf[15+3*sizeof(int)];
14         __procfdname(buf, fd);
15 #ifdef SYS_stat
16         return syscall(SYS_stat, buf, st);
17 #else
18         return syscall(SYS_fstatat, AT_FDCWD, buf, st, 0);
19 #endif
20 }
21
22 LFS64(fstat);