newlib-cygwin/newlib/libc/syscalls/sysstat.c

13 lines
189 B
C

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