Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sysfstat.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}