blob: 27db0ccbfa1453dadcde72ee2b978e7d8e61be94 [file] [log] [blame] [edit]
#define _BSD_SOURCE
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#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