Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / syscalls / sysfstat.c
blobc95e9aab19a1a9fb6d69eee384356ef18c89b500
1 /* connector for fstat */
3 #include <reent.h>
4 #include <sys/stat.h>
5 #include <unistd.h>
7 int
8 fstat (int fd,
9 struct stat *pstat)
11 return _fstat_r (_REENT, fd, pstat);