mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
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);
|
|
}
|