URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.18.0/] [newlib/] [libc/] [syscalls/] [sysfstat.c] - Rev 451
Go to most recent revision | Compare with Previous | Blame | View Log
/* connector for fstat */ #include <reent.h> #include <sys/stat.h> #include <unistd.h> int _DEFUN (fstat, (fd, pstat), int fd _AND struct stat *pstat) { return _fstat_r (_REENT, fd, pstat); }
Go to most recent revision | Compare with Previous | Blame | View Log