mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 06:14:33 +00:00
7 lines
150 B
C
Vendored
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);
|
|
}
|