libc/newlib/libc/syscalls/sysfstat.c

13 lines
176 B
C

/* connector for fstat */
#include <reent.h>
#include <sys/stat.h>
#include <unistd.h>
int
fstat (int fd,
struct stat *pstat)
{
return _fstat_r (_REENT, fd, pstat);
}