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: 864c0ab9c13011d52181210c13ce6802ed760442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* connector for fstat */

#include <reent.h>
#include <unistd.h>

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