zig/lib/libc/musl/src/stat/stat.c
2023-06-20 12:55:38 -04:00

7 lines
150 B
C
Vendored

#include <sys/stat.h>
#include <fcntl.h>
int stat(const char *restrict path, struct stat *restrict buf)
{
return fstatat(AT_FDCWD, path, buf, 0);
}