musl-tcc/src/stat/fstat.c

16 lines
281 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#define _BSD_SOURCE
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include "syscall.h"
int fstat(int fd, struct stat *st)
{
if (fd<0) return __syscall_ret(-EBADF);
return fstatat(fd, "", st, AT_EMPTY_PATH);
}
#if !_REDIR_TIME64
weak_alias(fstat, fstat64);
#endif