You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
484 B
25 lines
484 B
#include "time32.h"
|
|
#include <sys/stat.h>
|
|
|
|
struct stat32;
|
|
|
|
int __fxstat64(int ver, int fd, struct stat32 *buf)
|
|
{
|
|
return __fstat_time32(fd, buf);
|
|
}
|
|
|
|
int __fxstatat64(int ver, int fd, const char *path, struct stat32 *buf, int flag)
|
|
{
|
|
return __fstatat_time32(fd, path, buf, flag);
|
|
}
|
|
|
|
int __lxstat64(int ver, const char *path, struct stat32 *buf)
|
|
{
|
|
return __lstat_time32(path, buf);
|
|
}
|
|
|
|
int __xstat64(int ver, const char *path, struct stat32 *buf)
|
|
{
|
|
return __stat_time32(path, buf);
|
|
}
|