xref: /aosp_15_r20/external/musl/src/stat/stat.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <sys/stat.h>
2 #include <fcntl.h>
3 
stat(const char * restrict path,struct stat * restrict buf)4 int stat(const char *restrict path, struct stat *restrict buf)
5 {
6 	return fstatat(AT_FDCWD, path, buf, 0);
7 }
8