Retro68/gcc/newlib/libc/syscalls/sysfstat.c

13 lines
176 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/* connector for fstat */
#include <reent.h>
#include <sys/stat.h>
#include <unistd.h>
int
2018-12-28 15:30:48 +00:00
fstat (int fd,
2017-04-11 21:13:36 +00:00
struct stat *pstat)
{
return _fstat_r (_REENT, fd, pstat);
}