summaryrefslogtreecommitdiff
path: root/lib/libc/stat/fstat.c
blob: 7a9fb4e4d6bf1bdcf972bf1419d9c722f5e1f3e6 (plain)
1
2
3
4
5
6
7
8
#include <fcntl.h>
#include <sys/stat.h>
#include <syscall.h>

int fstat(int fildes, struct stat *buf)
{
	return fstatat(fildes, "", buf, 0);
}