uniLoader/lib/syscalls/sysfstat.c
Ivaylo Ivanov a1be36ae02 EXPERIMENTAL: Partially implement NewLib
Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
2023-07-19 19:37:17 +03:00

13 lines
176 B
C

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