iconv: add aliases for GBK
[musl.git] / src / stat / stat.c
blob23570e7a2460aacaabc7d8b22048a012de8fdac3
1 #include <sys/stat.h>
2 #include <fcntl.h>
4 int stat(const char *restrict path, struct stat *restrict buf)
6 return fstatat(AT_FDCWD, path, buf, 0);