provide an internal namespace-safe __fstat
[musl] / src / stat / fstat.c
1 #define _BSD_SOURCE
2 #include <sys/stat.h>
3 #include <errno.h>
4 #include <fcntl.h>
5 #include "syscall.h"
6
7 int __fstat(int fd, struct stat *st)
8 {
9         if (fd<0) return __syscall_ret(-EBADF);
10         return __fstatat(fd, "", st, AT_EMPTY_PATH);
11 }
12
13 weak_alias(__fstat, fstat);
14
15 #if !_REDIR_TIME64
16 weak_alias(fstat, fstat64);
17 #endif