#include #include #include #include #include int stat(const char *path, struct stat *buf) { SYS_STAT_PARAMS args = { .pathname = path, .statbuf = buf, }; RC_ERRNO(syscall(SYS_STAT, &args, 0, 0, 0, 0)); }