• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #define _BSD_SOURCE
2 #include <sys/stat.h>
3 #include <errno.h>
4 #include <fcntl.h>
5 #include "syscall.h"
6 
fstat(int fd,struct stat * st)7 int fstat(int fd, struct stat *st)
8 {
9 	if (fd<0) return __syscall_ret(-EBADF);
10 	return fstatat(fd, "", st, AT_EMPTY_PATH);
11 }
12 
13 #if !_REDIR_TIME64
14 weak_alias(fstat, fstat64);
15 #endif
16