mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
9087163804
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
13 lines
176 B
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);
|
|
}
|