source: trunk/libs/newlib/src/newlib/libc/syscalls/sysfstat.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: 176 bytes
Line 
1/* connector for fstat */
2
3#include <reent.h>
4#include <sys/stat.h>
5#include <unistd.h>
6
7int
8fstat (int fd,
9     struct stat *pstat)
10{
11  return _fstat_r (_REENT, fd, pstat);
12}
Note: See TracBrowser for help on using the repository browser.