musl-tcc/src/stat/fstat.c

16 lines
281 B
C

#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