summaryrefslogtreecommitdiffstats
path: root/newlib/libc/syscalls/sysfstat.c
blob: 7ce2c9dfe58fffa241407ee5dd45b1861a38cf20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* connector for fstat */

#include <reent.h>
#include <sys/stat.h>
#include <unistd.h>

int
_DEFUN (fstat, (fd, pstat),
     int fd _AND
     struct stat *pstat)
{
  return _fstat_r (_REENT, fd, pstat);
}