summaryrefslogtreecommitdiff
path: root/userland/libc/sys/stat/fstat.c
blob: 13b2b04aade638e7e3bdf20e623ab26af8994ced (plain)
1
2
3
4
5
6
7
8
9
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <sys/stat.h>
#include <syscall.h>

int fstat(int fd, struct stat *buf) {
  RC_ERRNO(syscall(SYS_FSTAT, fd, buf, 0, 0, 0));
}