aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/syscalls/sysfstat.c
blob: c95e9aab19a1a9fb6d69eee384356ef18c89b500 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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);
}