source: trunk/libs/newlib/src/newlib/libc/syscalls/sysstat.c @ 620

Last change on this file since 620 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 185 bytes
Line 
1/* connector for stat */
2
3#include <reent.h>
4#include <sys/stat.h>
5#include <unistd.h>
6
7int
8stat (const char *file,
9     struct stat *pstat)
10{
11  return _stat_r (_REENT, file, pstat);
12}
Note: See TracBrowser for help on using the repository browser.