提交 9ea20dcb 编写于 作者: R Rich Felker

add LSB ABI __xstat, etc. junk

上级 a5412976
#include <sys/stat.h>
#include "libc.h"
int __fxstat(int ver, int fd, struct stat *buf)
{
return fstat(fd, buf);
}
LFS64(__fxstat);
#include <sys/stat.h>
#include "libc.h"
int __fxstatat(int ver, int fd, const char *path, struct stat *buf, int flag)
{
return fstatat(fd, path, buf, flag);
}
LFS64(__fxstatat);
#include <sys/stat.h>
#include "libc.h"
int __lxstat(int ver, const char *path, struct stat *buf)
{
return lstat(path, buf);
}
LFS64(__lxstat);
#include <sys/stat.h>
#include "libc.h"
int __xstat(int ver, const char *path, struct stat *buf)
{
return stat(path, buf);
}
LFS64(__xstat);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册