blob: 0490df16490ce3a30d644af17ea6adab92de37ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* 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);
}
|