| 1 | #define _BSD_SOURCE |
| 2 | #include <sys/stat.h> |
| 3 | #include <errno.h> |
| 4 | #include <fcntl.h> |
| 5 | #include "syscall.h" |
| 6 | |
| 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 | weak_alias(__fstat, fstat); |