blob: 4859bec755ad8fc5ab3952bef55325b6e3d7ce56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <sys/types.h>
#include <sys/stat.h>
#include "_syscall.h"
int fstat(int fildes, struct stat *buf)
{
SYSCALL(fstat, int, -1, fildes, buf, 0, 0, 0, 0);
}
/*
POSIX(1)
*/
|