Retro68/gcc/newlib/libc/syscalls/sysstat.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

13 lines
185 B
C

/* connector for stat */
#include <reent.h>
#include <sys/stat.h>
#include <unistd.h>
int
stat (const char *file,
struct stat *pstat)
{
return _stat_r (_REENT, file, pstat);
}