add LSB ABI __xstat, etc. junk
This commit is contained in:
@@ -0,0 +1,9 @@
|
|||||||
|
#include <sys/stat.h>
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
|
int __fxstat(int ver, int fd, struct stat *buf)
|
||||||
|
{
|
||||||
|
return fstat(fd, buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
LFS64(__fxstat);
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#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);
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#include <sys/stat.h>
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
|
int __lxstat(int ver, const char *path, struct stat *buf)
|
||||||
|
{
|
||||||
|
return lstat(path, buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
LFS64(__lxstat);
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#include <sys/stat.h>
|
||||||
|
#include "libc.h"
|
||||||
|
|
||||||
|
int __xstat(int ver, const char *path, struct stat *buf)
|
||||||
|
{
|
||||||
|
return stat(path, buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
LFS64(__xstat);
|
||||||
Reference in New Issue
Block a user