summaryrefslogtreecommitdiff
path: root/lib/libc/stat/fstat.c
blob: 9c3a9df2420300957c993535daa75163e7a5f21f (plain)
1
2
3
4
5
6
#include <sys/stat.h> // for fstatat, fstat

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