delete a redundant if in dynamic linker ctor execution loop
[musl.git] / src / stat / fstat.c
blob4f13f4f0e39eacfb63010353810c5387bba817f6
1 #include <sys/stat.h>
2 #include <errno.h>
3 #include <fcntl.h>
4 #include "syscall.h"
6 int fstat(int fd, struct stat *st)
8 int ret = __syscall(SYS_fstat, fd, st);
9 if (ret != -EBADF || __syscall(SYS_fcntl, fd, F_GETFD) < 0)
10 return __syscall_ret(ret);
12 char buf[15+3*sizeof(int)];
13 __procfdname(buf, fd);
14 #ifdef SYS_stat
15 return syscall(SYS_stat, buf, st);
16 #else
17 return syscall(SYS_fstatat, AT_FDCWD, buf, st, 0);
18 #endif
21 weak_alias(fstat, fstat64);