blob: ea70efc4a0a4e27a0a160541dc047377b90eaee0 [file] [log] [blame]
#include <sys/stat.h>
#include <fcntl.h>
int stat(const char *restrict path, struct stat *restrict buf)
{
return fstatat(AT_FDCWD, path, buf, 0);
}
#if !_REDIR_TIME64
weak_alias(stat, stat64);
#endif