summaryrefslogtreecommitdiff
path: root/src/_forced/stat.h
blob: e0a75dcc92a7b56fe78a76f5d08a538b2bc2a406 (plain)
1
2
3
4
5
6
7
#include "_syscall.h"
struct stat {
	int st_mode;
	char padding[1024];
};
#define stat(_f, _b)    __scall2(stat, _f, _b)
#define S_ISDIR(_m) ((_m) & 0x00)