URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [rdos/] [stat.c] - Rev 816
Compare with Previous | Blame | View Log
#include "config.h" #include <_ansi.h> #include <_syslist.h> #include <sys/types.h> #include <sys/stat.h> #include <errno.h> int stat(const char *file, struct stat *st) { errno = ENOSYS; return -1; }