#define _BSD_SOURCE #include #include #include #include "syscall.h" int __fstat(int fd, struct stat *st) { if (fd<0) return __syscall_ret(-EBADF); return __fstatat(fd, "", st, AT_EMPTY_PATH); } weak_alias(__fstat, fstat); #if !_REDIR_TIME64 weak_alias(fstat, fstat64); #endif