4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-29 18:40:25 +08:00
Yaakov Selkowitz 6783860a2e ansification: remove _AND
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:05 -06:00

14 lines
202 B
C

/* connector for fstat */
#include <reent.h>
#include <sys/stat.h>
#include <unistd.h>
int
_DEFUN (fstat, (fd, pstat),
int fd,
struct stat *pstat)
{
return _fstat_r (_REENT, fd, pstat);
}