Rich Felker | 9ea20dc | 2012-05-31 23:32:09 -0400 | [diff] [blame] | 1 | #include <sys/stat.h> |
| 2 | #include "libc.h" |
| 3 | |
Rich Felker | 76f2bcc | 2014-06-22 00:29:32 -0400 | [diff] [blame] | 4 | int __fxstat(int ver, int fd, struct stat *buf) |
| 5 | { |
| 6 | return fstat(fd, buf); |
| 7 | } |
| 8 | |
| 9 | int __fxstatat(int ver, int fd, const char *path, struct stat *buf, int flag) |
| 10 | { |
| 11 | return fstatat(fd, path, buf, flag); |
| 12 | } |
| 13 | |
| 14 | int __lxstat(int ver, const char *path, struct stat *buf) |
| 15 | { |
| 16 | return lstat(path, buf); |
| 17 | } |
| 18 | |
Rich Felker | 9ea20dc | 2012-05-31 23:32:09 -0400 | [diff] [blame] | 19 | int __xstat(int ver, const char *path, struct stat *buf) |
| 20 | { |
| 21 | return stat(path, buf); |
| 22 | } |
| 23 | |
Rich Felker | 76f2bcc | 2014-06-22 00:29:32 -0400 | [diff] [blame] | 24 | LFS64(__fxstat); |
| 25 | LFS64(__fxstatat); |
| 26 | LFS64(__lxstat); |
Rich Felker | 9ea20dc | 2012-05-31 23:32:09 -0400 | [diff] [blame] | 27 | LFS64(__xstat); |
Rich Felker | 1fd0f6e | 2014-06-22 00:37:12 -0400 | [diff] [blame] | 28 | |
| 29 | int __xmknod(int ver, const char *path, mode_t mode, dev_t *dev) |
| 30 | { |
| 31 | return mknod(path, mode, *dev); |
| 32 | } |
| 33 | |
| 34 | int __xmknodat(int ver, int fd, const char *path, mode_t mode, dev_t *dev) |
| 35 | { |
| 36 | return mknodat(fd, path, mode, *dev); |
| 37 | } |