mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 04:19:21 +08:00
0bda30e1ff
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
14 lines
213 B
C
14 lines
213 B
C
/* connector for stat */
|
|
|
|
#include <reent.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
_DEFUN (stat, (file, pstat),
|
|
const char *file,
|
|
struct stat *pstat)
|
|
{
|
|
return _stat_r (_REENT, file, pstat);
|
|
}
|