]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/stat/fstatat.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / stat / fstatat.c
1 #include <sys/stat.h>
2 #include "syscall.h"
3
4 int fstatat(int fd, const char *restrict path, struct stat *restrict buf, int flag)
5 {
6 return syscall(SYS_fstatat, fd, path, buf, flag);
7 }
8
9 weak_alias(fstatat, fstatat64);