mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
14 lines
218 B
C
14 lines
218 B
C
|
/* connector for stat */
|
||
|
|
||
|
#include <reent.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int
|
||
|
_DEFUN (stat, (file, pstat),
|
||
|
_CONST char *file _AND
|
||
|
struct stat *pstat)
|
||
|
{
|
||
|
return _stat_r (_REENT, file, pstat);
|
||
|
}
|