4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-18 04:19:21 +08:00
Yaakov Selkowitz 0bda30e1ff ansification: remove _CONST
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:08 -06:00

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);
}