URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [newlib/] [libc/] [syscalls/] [sysstat.c] - Rev 9
Compare with Previous | Blame | View Log
/* 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); }