| 1 | #include "time32.h" |
| 2 | #include <sys/stat.h> |
| 3 | |
| 4 | struct stat32; |
| 5 | |
| 6 | int __fxstat(int ver, int fd, struct stat32 *buf) |
| 7 | { |
| 8 | 	return __fstat_time32(fd, buf); |
| 9 | } |
| 10 | |
| 11 | int __fxstatat(int ver, int fd, const char *path, struct stat32 *buf, int flag) |
| 12 | { |
| 13 | 	return __fstatat_time32(fd, path, buf, flag); |
| 14 | } |
| 15 | |
| 16 | int __lxstat(int ver, const char *path, struct stat32 *buf) |
| 17 | { |
| 18 | 	return __lstat_time32(path, buf); |
| 19 | } |
| 20 | |
| 21 | int __xstat(int ver, const char *path, struct stat32 *buf) |
| 22 | { |
| 23 | 	return __stat_time32(path, buf); |
| 24 | } |